我正在尝试在我的页面打开时显示加载文本或动画,但不知何故它不起作用,我没有明白这个解释:http://api.highcharts.com/highstock/Chart.showLoading 我还用一个按钮检查了各种例子,但不幸的是它也不适用于我。这是我的代码片段:
<script>
$(function () {
chart.showLoading('Loading data ...');
$.getJSON('http://url/data_1/', function (data) {
// define and process data
var ohlc = [] ;
ohlc.push([...]);
...
}
// create the chart
var chart = Highcharts.stockChart('container', {
plotOptions: { ... },
series: [{ ... }],
});
});
</script>
我非常感谢任何帮助。