英文:
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/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论