我一直试图让这个工作起来,我完全陷入困境。我想我已经做好了一切。包含所有需要的文件,但我的图表在我使用时不会显示:
$('#index-container').highcharts('StockChart', {
我的图表没有显示。但是当我使用
时$('#index-container').highcharts('Chart', {
图表显示但未正确显示控件。
请参阅下面的代码
$(function() {
$.getJSON('get-chart-data.php?series=c&x=NSE&s=<?php echo $secsymbol ?>&callback=?', function (data) {
$('#index-container').highcharts('StockChart', {
rangeSelector: {
inputEnabled: true,
selected: 1
},
title: {
text: 'company'
},
series: [
{
name: 'symbol',
data: data,
type: 'area',
threshold: null,
tooltip: {
valueDecimals: 2
},
fillColor: {
linearGradient: {
x1: 0,
y1: 0,
x2: 0,
y2: 1
},
stops: [
[0, Highcharts.getOptions().colors[0]],
[1, 'rgba(0,0,0,0)']
]
}
}
]
});
});
});
<div id="index-container" class="col-md-12 col-sm-12 col-xs-12" style="min-height:450px; min-width: 480px"></div>
我很感激,如果有人可以帮助,这在过去三个小时里一直很痛苦。
提前致谢