Day one
<div id="container" style="width: 600px; height: 280px; margin: 0 auto; margin-top:-10px;"></div>
<script language="JavaScript">
$(document).ready(function() {
var chart = {
type: 'pie',
options3d: {
enabled: true,
alpha: 45
}
};
var title = {
text: ''
};
var subtitle = {
text: ''
};
var plotOptions = {
pie: {
innerSize: 100,
depth: 45
}
};
var series= [{
name: '笔数',
data: [
['玉米单数据(8,456)', 4],
['青稞单数据(88,456)', 8],
['燕麦单数据(2,456)', 2],
['高粱单数据(2,456)', 2],
['水稻单数据(22,456)', 6]
]
}];
var json = {};
json.chart = chart;
json.title = title;
json.subtitle = subtitle;
json.plotOptions = plotOptions;
json.series = series;
$('#container').highcharts(json);
});
function myrefresh()
{
window.location.reload();
}
setTimeout('myrefresh()',6000); //指定3秒刷新一次
</script>

浙公网安备 33010602011771号