gpt4 book ai didi

highcharts - 动态添加 Y 轴

转载 作者:行者123 更新时间:2023-12-03 23:25:21 25 4
gpt4 key购买 nike

是否可以在 Highstock 图表中添加新的 y 轴?我试过在选项中添加一个并重新绘制,但这似乎不起作用。

HighCharts 的文档包含图表对象的 addAxis() 函数,但在 HighStock 中不存在此函数。任何替代方案?

最佳答案

请看例子http://jsfiddle.net/wvaGt/

$('#container').highcharts('StockChart',{


yAxis: {
title: {
text: 'Temperature'
},
lineWidth: 2,
lineColor: '#F33'
},

series: [{
name: 'Temperature',
data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6],
color: '#F33'
}]
});

// the button handlera
var chart = $('#container').highcharts();
$('#add').click(function() {
chart.addAxis({ // Secondary yAxis
id: 'rainfall-axis',
title: {
text: 'Rainfall'
},
lineWidth: 2,
lineColor: '#08F',
opposite: true
});
chart.addSeries({
name: 'Rainfall',
type: 'column',
color: '#08F',
yAxis: 'rainfall-axis',
data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
});
});

关于highcharts - 动态添加 Y 轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15658249/

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