javascript - Adding a value to x axis labeling in d3.js -
Let me mark the x axis of my chart with the date and build number. How can I get it?
Here is a code of my code:
The data is structured like this:
var data = arrData map (function (d) { Return {Date: Parsadet (D [0]), Build NB: D [1], Failure: D [2], all: D [3]};});
Comments
Post a Comment