请看一下我在JSFiddle中的代码;
const chart = { title: { text: "" }, exporting: { enabled: false }, series: [], xAxis: [ { min: 0, max: 10, legend: { enabled: true } } ],
yAxis: [] };
const yAxis = { id: 0, title: { text: "test" }, min: 1, max: 100 }
chart.yAxis.push( yAxis );
const series = { type: "line", id: 0, data: [], name: "test" }
chart.series.push( series );
Highcharts.stockChart( 'container', chart );
检查控制台以查看错误。
问题在于设置xAxis的“ min”和“ max”。如果我删除这两个属性,则可以正常工作。有人可以告诉我问题是什么。我的图表需要有最小值和最大值。
id
属性应该是唯一的,并且应该是一个字符串:
const yAxis = {
id: '0',
...
}