滑块/导航器中的三行与图形根本不相似。我能做些什么来解决这个问题?我没有在文档中找到任何内容,并且希望将此库保留在我的项目中,但是对于用户来说,在预览中看到完全错误的内容并不是一种很好的体验。谢谢!
代码是标准的:
function createChart() {
Highcharts.stockChart('container', {
rangeSelector: {
selected: 4
},
yAxis: {
labels: {
formatter: function () {
return (this.value > 0 ? ' + ' : '') + this.value + '%';
}
},
plotLines: [{
value: 0,
width: 2,
color: 'silver'
}]
},
plotOptions: {
series: {
compare: 'percent',
showInNavigator: true
}
},
series: seriesOptions
}); }
$.each(names, function (i, name) {
$.getJSON('https://www.highcharts.com/samples/data/' + name.toLowerCase() + '-c.json', function (data) {
seriesOptions[i] = {
name: name,
data: data
};
seriesCounter += 1;
if (seriesCounter === names.length) {
createChart();
}
}); });
答案 0 :(得分:1)