创建它后,我将在highcharts中更改实体规格的停止值。以下代码是我写的代码:
this.gaugeChart.yAxis[0].update({
stops: [
[0.0, '#55BF3B'],
[0.5, '#DDDF0D'],
[0.9, '#DF5353'] // red
] });
问题是它不会更新实体仪表的停止值。我错过了什么吗?
答案 0 :(得分:0)
请参阅下面的working fiddle和代码。定义你的图表或者它的图表加载功能只是用户"这个"关键字。
var chartX= this.gaugeChart;// define your chart
$('#somebutton').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);
});