Highcharts根据给定的x值查找点。

huangapple go评论100阅读模式
英文:

highcharts find point with given x value

问题

你需要能够找到在给定的年份和月份(例如1984年1月)中,具有X值(毫秒时间)的系列中的点,最有效的方法是什么?

英文:

I need to be able to find the points in series with a X value (time in milliseconds) falling in a given Year and Month, say Jan 1984, what is the most efficient way?

答案1

得分: 1

你可以通过以下方式根据 x 值找到一个点:

var series = chart.series[0],
    index = series.xData.indexOf(1553779800000),
    point = series.points[index];

实时演示: https://jsfiddle.net/BlackLabel/h9qye01r/

英文:

You can find a point by x value in this way:

var series = chart.series[0],
    index = series.xData.indexOf(1553779800000),
    point = series.points[index];

Live demo: https://jsfiddle.net/BlackLabel/h9qye01r/

huangapple
  • 本文由 发表于 2020年1月3日 21:43:05
  • 转载请务必保留本文链接:https://go.coder-hub.com/59579650.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定