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 值。我希望能够计算工具提示中两个 X 值之间的差异。
这是我正在使用的图表:
组合图
让它工作。诀窍在于工具提示的共享和格式化程序属性:
tooltip: { shared: true, formatter: function() { var s= this.points[1].y - this.points[0].y; return s; } },