gpt4 book ai didi

javascript - 如何检查Highcharts y轴是否存在

转载 作者:行者123 更新时间:2023-11-29 19:03:33 26 4
gpt4 key购买 nike

我有一个 Highcharts 图表,我正在动态添加 y 轴。

我找到了 this example并且运行良好。

但是,如果您按照示例多次点击“添加轴和系列”,您最终将拥有多个轴和系列。

但在我的例子中,如果我添加了一个 y 轴,我想检查是否已经存在具有相同 ID 的 y 轴,如果存在,则不要再次添加该轴。

下面是例子的副本(不是我写的)

$(function () {
$('#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() {
// if not exist chart.axis['rainfall-axis'] :
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]
});
});
});

最佳答案

您可以使用内置 API ( Chart.get ) 检查是否存在具有给定 ID 的元素。

var id = 'rainfall-axis';

if ( !chart.get( id ) ) {
chart.addAxis({ // Secondary yAxis
id: id,
title: {
text: 'Rainfall'
},
lineWidth: 2,
lineColor: '#08F',
opposite: true
});
}
else {
alert( 'chart has an axis with id ' + id );
}

http://jsfiddle.net/f4f15cof/2/

关于javascript - 如何检查Highcharts y轴是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44799819/

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