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.
我从这里调整了代码:http: //square.github.io/crossfilter/到我自己的数据 - 我如何在 y 轴上显示左侧的计数?
基本思想是这样的:
// Create y-axis var yAxis = d3.svg.axis() .orient("left") .scale(y); // Add y-axis. svg.append("svg:g") .call(yAxis);
x是你的水平刻度。svg是您的可视化的根SVG元素(作为选择)。
x
svg
您可能想查阅Mike的文档或此示例。