I'm simply trying to use local months on the x-axis of a bar chart. First I would like to only represent months on x-axis and second I would like to have the months defined in localeFrance.
I have forked a fiddle but I can't make it work :https://jsfiddle.net/xjp2o0wt/6/
so here is my code. Thanks for your valuable help
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dashboard</title>
<link rel="stylesheet" href="dc.css">
</head>
<body>
<div id=chart>
here
</div>
<script src="crossfilter.js"></script>
<script src="d3.js"></script>
<script src="dc.js"></script>
<script>
var localeFrance = d3.locale ({
"decimal": "",
"thousands": "",
"grouping": [3],
"currency": ["€ ", ""],
"dateTime": "%a %b %e %X %Y",
"date": "%d/%m/%Y",
"time": "%H:%M:%S",
"periods": ["AM", "PM"],
"days": ["Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"],
"shortDays": ["lun", "mar", "mer", "jeu", "ven", "sa", "dim"],
"months": ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembrr", "Octobre", "Novembre", "Decembre"],
"shortMonths": ["Jan", "Fev", "Mar", "Avr", "Mai", "Juin", "Juil", "Aou", "Sep", "Oct", "Nov", "Dec"]
});
var dateFormat_in = d3.time.format.utc("%Y-%m-%d");
data=[{year:2017, month:1, value:12},{year:2017, month:2, value:15},{year:2017, month:3, value:12},
{year:2017, month:4, value:16},{year:2017, month:5, value:14}]
data.forEach(function(d) {
d["date"] = dateFormat_in.parse(d["year"]+"-"+d["month"]+"-01");
d["value"] = +d["value"];
});
ndx = crossfilter(data);
timeChart = dc.barChart("#chart");
monthDim = ndx.dimension(d => d3.time.month.utc(d["date"]));
monthGroup = monthDim.group().reduceSum(d=>d.value);
minDate = monthDim.bottom(1)[0]["date"];
maxDate = monthDim.top(1)[0]["date"];
timeChart
.width(480)
.height(320)
.margins({top: 5, right: 30, bottom: 20, left: 50})
.dimension(monthDim)
.group(monthGroup)
.x(d3.time.scale().domain([minDate, maxDate]))
.xUnits(d3.time.months)
//.xUnits(localeFrance.timeFormat("%b"))
.elasticY(true)
.centerBar(true).xAxisPadding(15).xAxisPaddingUnit('month')
.gap(16)
.yAxis().ticks(1);
dc.renderAll();
</script>