gpt4 book ai didi

javascript - Highcharts 不更新系列停止

转载 作者:行者123 更新时间:2023-11-30 16:26:22 25 4
gpt4 key购买 nike

我正在使用 highcharts 绘制图表(实心仪表),带有初始止损数组,我正在尝试更新止损(当一些新数据出现时),但是 highcharts 没有响应此更新系列的颜色代表初始数组 - 而不是新给出的数组。

我在下面重新创建了这个 jsFiddle

使用这段代码

$('#container-speed').highcharts().yAxis[0].update({
stops: [[0.1, '#a2a2a2'], // grey
[0.5, '#a2a2a2'], // grey
[0.9, '#a2a2a2']] // grey
});

单击 Change Stops 按钮,您会注意到“速度”图表没有将颜色更改为“灰色”——如新停止数组中所定义。

谢谢

最佳答案

这是解决方案:[credit : @PawelFus(highcharts) for addressing similar problem]

var chartX=  $('#container-speed').highcharts();
$('#changeStops').click(function(){
chartX.yAxis[0].update({
stops: [[0.1, '#a2a2a2'], // grey
[0.5, '#a2a2a2'], // grey
[0.9, '#a2a2a2']] // grey
},false);
chartX.series[0].bindAxes();
chartX.redraw(true);
});

Working fiddle here Here

关于javascript - Highcharts 不更新系列停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34091589/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com