我需要能够在图表下方添加一个表格(可能在图例部分中)。我有一个cpu图表,但我需要能够显示阈值是否被破坏以及何时被破坏。
可能在图例部分,我需要能够调用另一个系列数据(这与图表数据不同)并从中创建表格。
这就是我要创建cpu图表的原因:
<script type="text/javascript">
$(document).ready(function() {
$.ajaxSetup({ cache: false });
//$(function() {
function db_cpu() {
var timeout;
$.getJSON('db_cpu.php', function(data) {
// Create a timer
// Create the chart
$('#db_cpu_div').highcharts('StockChart', {
chart: {
borderColor: '#98AFC7',
borderRadius: 20,
borderWidth: 1,
events: {
load: function(chart) {
this.setTitle(null, {
});
}
},
zoomType: 'x'
},
exporting: {
enabled: true
},
legend: {
enabled: true
},
});
});
timeout = setTimeout(db_cpu, 300000);
}
db_cpu();
});
是否有可能在图例部分创建另一个函数来对php文件进行另一个json调用以获取另一个系列并以表格格式显示这些数据?
表格将是这样的:
Threshold Breached (as the title)
Date Value
6/27/2013 12:00:00 96
6/29/2013 03:00:00 90
7/01/2013 09:00:00 75
7/05/2013 13:00:00 80
我需要这个区域可扩展/可伸缩,带有+和 - 符号