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.
我正在制作全年图表,但我遇到了一些麻烦。
该图表从 1 月开始,直到 5 月才有数据显示。客户只希望图表在有数据显示时加注星标,我找不到任何相关选项,如“startWhenData”或类似的东西。
有任何想法吗?
太感谢了!
将您的 xAxis min 设置得足够远,以便您可以看到一月。
xAxis: { type: 'datetime', min: Date.UTC( 2012, 12, 1) },
然后以以下形式将数组数组传递给系列数据:
data: [ [date1,dataPoint1], [date2,dataPoint2], ... ]
JSFiddle 这个在行动。