シリーズのIDを取得するには? APIには名前とデータなどしかありませんが、IDはありません。どのように私はシリーズからIDを得ることができますか?Highcharts/HighstockでシリーズのIDを取得する方法
私は以下の方法でチャートのすべてのシリーズをループしています。
$(chart.series).each(function(i, serie){
// Want to get serie's id
});
EDIT:
私はフォローの方法を使用してIDを取得することができました。私はそれが正しい方法であるか分からないのですか?あなたが行うことができますように
Another way to reference the series programmatically is by id. Add an id in the series configuration options, and get the series object by chart.get(id).
が見える:ドキュメントから
$(chart.series).each(function(i, serie){
console.log(serie.options.id);
});
ありがとうございます。私はそれが文書の中にあるべきだと感じます。 –