I am using D3.js to build this line chart.and its working fine . but i am not able to print the months on x-axis in abbreviated form (jan,feb....)
here how i am parsing the date.
var parseDate = d3.time.format("%m-%Y").parse;
the code for x-axis
var xAxis = d3.svg.axis().scale(x).orient("bottom");
and printing and appending
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
help me with this.