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.
次のコードを使用して、グラフィックの色を設定できます。
chart.series[1].data[1].graphic.attr("fill","red");
ただし、値を取得しようとすると、null 応答が返されます: NaN
console.log(chart.series[1].data[1].graphic.attr("fill"));
現在の塗りつぶしを確認するにはどうすればよいですか?
どうもありがとう
使用する必要があります
chart.series[0].data[0].graphic.fill
http://jsfiddle.net/EzxJ9/1/