Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 d3.js 生成大量图表(200+)。这是在某些图表上随机生成三条短轴线、无线或一两条线的代码:
var xAxis = d3.svg.axis() .scale(x) .orient("bottom") .ticks(5).tickSize(-height).tickSubdivide(3);
我看不出这种行为有任何规律性,它只是随机显示或不显示一些次要线条。有没有人有同样的经历?
无法显示任何图像,因为我没有足够的声誉,希望问题是可以理解的,谢谢
您可以通过一些轴示例查看此页面http://bl.ocks.org/GerHobbelt/3605124