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.
私は c3js を使用していますが、このチャート フレームワークはまだ初心者です。チャートの系列凡例にタイトルを設定する必要があります。これどうやってするの?これを実装するには D3 を使用する必要がありますか?
前もって感謝します。
この混乱はどうですか:
var firstLegend = d3.select(".c3-legend-item"); var legendCon = d3.select(firstLegend.node().parentNode); var legendY = parseInt(firstLegend.select('text').attr('y')); legendCon .append('text') .text('Legend Title') .attr('y', legendY - 20);