gpt4 book ai didi

javascript - Highcharts : How to flag the local maxima on a dynamic graph drawn using HighChart

转载 作者:太空宇宙 更新时间:2023-11-04 13:31:59 25 4
gpt4 key购买 nike

这是 jsfiddle 链接 http://jsfiddle.net/MzQE8/19/

这是我的代码

       $(function () {
$(document).ready(function() {
Highcharts.setOptions({
global: {
useUTC: false
}
});

var chart;

$('#container').highcharts({
chart: {
type: 'spline',
animation: Highcharts.svg, // don't animate in old IE
marginRight: 10,
events: {
load: function() {

// set up the updating of the chart each second
var series = this.series[0];
setInterval(function() {
var x = (new Date()).getTime(), // current time
y = Math.random();
series.addPoint([x, y], true, true);

}, 1000);
}
}
},
title: {
text: 'Live random data'
},
xAxis: {
type: 'datetime',
tickPixelInterval: 450
},
yAxis: {
title: {
text: 'Value'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
plotOptions:{

series : {
lineWidth:1
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.series.name +'</b><br/>'+
Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
Highcharts.numberFormat(this.y, 2);
}
},
legend: {
enabled: false
},
exporting: {
enabled: false
},
series: [{
name: 'Random data',
data: (function() {
// generate an array of random data
var data = [],
time = (new Date()).getTime(),
i;

for (i = -30; i <= 0; i++) {
data.push({
x: time + i * 1000,
y: Math.random()
});
}
return data;
})(),
color:'red'
}]
});
});

});

我想在这里做的是给那些比它的直接邻域更大的点赋予不同的颜色。

怎么做?

一种似乎合理的方法是将最大值保留在变量中,然后如果出现比旧最大值更大的新值,我们应该更新它,并为图表中的对应点赋予不同的颜色。

还有其他更直接的方法吗?

最佳答案

在 addPoint 函数中,您可以使用对象(而不是数组)并设置颜色。只有你需要的是添加条件来修改默认颜色。

var x = (new Date()).getTime(), // current time
y = Math.random(),
color = 'red'; //default color

//condition

series.addPoint({
x: x,
y: y,
color: color
}, true, true);

http://jsfiddle.net/MzQE8/130/

关于javascript - Highcharts : How to flag the local maxima on a dynamic graph drawn using HighChart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23302587/

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