json - set date without time in D3 js -
i working on d3 js. lerner , trying render multi line graph not able set proper date format.i wanted remove 12 pm .example april 12 pm wed 02 below code var margin = { top: 40, right: 40, bottom: 35, left: 85 }, width = 800 - margin.left - margin.right, height = 350 - margin.top - margin.bottom; var parsedate = d3.time.format("%y%m%d").parse; var x = d3.time.scale() .range([0, width]); var y = d3.scale.linear() .range([height, 0]); var color = d3.scale.category10(); var xaxis = d3.svg.axis() .scale(x) .orient("bottom"); var yaxis = d3.svg.axis() .scale(y) .orient("left"); var line = d3.svg.line() .interpolate("basis") .x(function (d) { return x(d.date); }) .y(function (d) { return y(d.request); }); var svg = d3.select("body").append("svg") .attr("width", width + margin.left + margin.right) .attr("height",...