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.
単一のY軸を共有する組み合わせ棒折れ線グラフがあります。
棒グラフと折れ線グラフの両方のデータポイントは、常に同じY値を共有します。ツールチップで2つのX値の差を計算できるようにしたいと思います。
これが私が扱っているチャートです:
コンボチャート
動作するようになりました。秘訣は、ツールチップの共有プロパティとフォーマッタープロパティにありました。
tooltip: { shared: true, formatter: function() { var s= this.points[1].y - this.points[0].y; return s; } },