如何使用D3.js

时间:2015-06-27 21:23:41

标签: javascript d3.js

我正在使用d3.js进行制图,我试图在日期旁边添加标签。如果x轴上的日期看起来如下:

enter image description here

我尝试在日期前添加标签:

Week Jun 21 12:00Am  Jun 22 12:00AM and so on...(shown above)

这是我试过的:Js

   var margin = {top: 60, right: 60, bottom: 60, left:120},
   w = 600 - margin.left - margin.right,
   h = 400 - margin.top - margin.bottom;
   var lines= d3.select('.graph');
   lines.enter().append("svg:text")
        .attr("x", w / 2 )
        .attr("y",  h + margin.bottom)
        .style("text-anchor", "middle")
        .text("Week");

但是对我没有用。任何想法如何实现这一目标?谢谢!

0 个答案:

没有答案