When I am passing numbers to the x-axis the graph is showing up. But when i tried to pass dates in the x-axis it displays nothing. I have given for x-axis like this
chart.xAxis
.axisLabel('Date')
.tickFormat(function(d) { return d3.time.format('%b %d')(new Date(d)); });
One more issue with the y axis the label is not showing up in any graph.
Here is the jsfiddle of my code.