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.
知道 Highcharts 中一个系列上的两个绘制数据点,我如何获得它们之间的像素数?
在系列数据中,您可以找到:chart.series[0].data[0].plotX所以要获得两点之间的距离,请使用:chart.series[0].data[5].plotX - chart.series[0].data[0].plotX
chart.series[0].data[0].plotX
chart.series[0].data[5].plotX - chart.series[0].data[0].plotX