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のこの例を参考にしてください。