$(function () {
$read(>
$(function () {
$read(document). (function() {
Highcharts.setOptions({
global: {
useUTC: false
}
});
var 圖表
$(' #container').highcharts({
chart: {
type: 'spline',
animation: Highcharts.svg, // 不要在舊版IE 中設定動畫
marginRight: 10,
events: {
load: function() {
// 設定圖表每秒更新
var series = this.series[0];
setInterval(function( ) {
var x = (new Date()).getTime(), // 當前時間
y = Math.random();
series.addPoint([x, y], true, true );
}, 1000);
}
},
title: {
text: '即時隨機資料'
},
xAxis: {
類型:'日期時間',
tickPixelInterval:150
},
yAxis:{
標題:{
文字:'值'
},
plotLines: [{
值: 0,
寬度: 1,
顏色: '#808080'
}]
},
工具提示: {
格式化程式: function() {
回傳'' this.series.name '
'
Highcharts.dateFormat('%Y-%m-%d %H:%M: %S', this.x) '
'
Highcharts.numberFormat(this.y, 2);
}
},
圖例:{
啟用:false
},
導出:{
啟用:false
},
系列:[{
name: '隨機資料',
data: (function() {
//產生隨機資料數組
var data = [],
time = (new Date() ).getTime(),
i;
for (i = -19; i data.push({
x: 時間i * 1000 ,
y: Math.random()
});
}
回傳資料
})()
}]
});
});
});