gpt4 book ai didi

javascript - 是否可以在一个 Pane 中使用两个 Pane 和多个系列创建 Highstock 图表

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

有人知道是否可以使用两个 Pane 并在一个 Pane 内使用多个系列来创建图表吗?

我做了我需要的屏幕截图:

Example of TWO PANES chart with MULTIPLE SERIES in a pane

有人有 JFiddler 的例子吗?

我已经尝试创建一个,但没有成功...

问候,

马塞洛

最佳答案

是的,我做到了!

下面是我创建的源代码:

HTML

<script src="http://code.highcharts.com/stock/highstock.js"></script>
<script src="http://code.highcharts.com/stock/modules/exporting.js"></script>
<div id="container" style="height: 500px; min-width: 310px"></div>

Javascript代码

$(function() {
$.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=aapl-ohlcv.json&callback=?', function(data) {
var ohlc = [],
ohlc2 = [],
volume = [],
dataLength = data.length,
groupingUnits = [
['week', [1]],
['month', [1, 2, 3, 4, 6]]
],
i = 0;

for (i; i < dataLength; i += 1) {
ohlc.push([
data[i][0], // the date
data[i][1], // open
data[i][2], // high
data[i][3], // low
data[i][4] // close
]);

ohlc2.push([
data[i][0], // the date
data[i][1] - (Math.ceil(Math.random()*100)+100), // open
data[i][2] - (Math.ceil(Math.random()*100)+100), // high
data[i][3] - (Math.ceil(Math.random()*100)+100), // low
data[i][4] - (Math.ceil(Math.random()*100)+100) // close
]);

volume.push([
data[i][0], // the date
data[i][5] // the volume
]);
}

// create the chart
$('#container').highcharts('StockChart', {

rangeSelector: {
inputEnabled: $('#container').width() > 480,
selected: 1
},

title: {
text: 'Two Panes & Multiple Series'
},

yAxis: [{
labels: {
align: 'right',
x: -3
},
title: {
text: 'OHLC'
},
height: '60%',
lineWidth: 2
}, {
labels: {
align: 'right',
x: -3
},
title: {
text: 'Volume'
},
top: '65%',
height: '35%',
offset: 0,
lineWidth: 2
}],

series: [{
name: 'AAPL',
data: ohlc,
dataGrouping: {
units: groupingUnits
}
}, {
name: 'AAPL2',
data: ohlc2,
dataGrouping: {
units: groupingUnits
}
}, {
name: 'Volume',
data: volume,
yAxis: 1,
dataGrouping: {
units: groupingUnits
}
}]
});
});
});

JSFiddler 中的链接: http://jsfiddle.net/marcelojuventino/tc1a78ma/1/

谢谢大家!

关于javascript - 是否可以在一个 Pane 中使用两个 Pane 和多个系列创建 Highstock 图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25876035/

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