JS highcharts動態(tài)柱狀圖原理及實現(xiàn)
實現(xiàn)一個柱狀圖,這個柱狀圖的高度在不停的刷新,效果如下:
官網(wǎng)是沒有動態(tài)刷新的示例的,由于需要我查看了其源碼,并根據(jù)之前示例做出了動態(tài)柱狀圖的效果,希望對同學(xué)們有用!
看一下代碼:
<%@ page language='java' import='java.util.*' pageEncoding='UTF-8'%><html><head><title>Highcharts Example</title><script language='javascript' type='text/javascript' src='http://www.aoyou183.cn/bcjs/jquery.min.js'></script><script language='javascript' type='text/javascript' src='http://www.aoyou183.cn/bcjs/highcharts.js'></script><script language='javascript' type='text/javascript' src='http://www.aoyou183.cn/bcjs/exporting.js'></script><script type='text/javascript'>var chart;$(document).ready(function() {chart = new Highcharts.Chart({chart: {renderTo: ’container’,type: ’column’,events: { load: function() { // set up the updating of the chart each second var series = this.series[0]; setInterval(function() { var data = []; data.push([’Apples’, Math.random()]); data.push([’Oranges’, Math.random()]); data.push([’Pears’, Math.random()]); data.push([’Grapes’, Math.random()]); data.push([’Bananas’, Math.random()]); series.setData(data); }, 2000); } }},title: {text: ’<b>Java小強制作</b>’},xAxis: {categories: [’Apples’, ’Oranges’, ’Pears’, ’Grapes’, ’Bananas’]},yAxis: {min: 0,title: {text: ’當(dāng)前產(chǎn)值’},stackLabels: {enabled: true,style: {fontWeight: ’bold’,color: (Highcharts.theme && Highcharts.theme.textColor) || ’gray’}}},legend: {align: ’right’,x: -100,verticalAlign: ’top’,y: 20,floating: true,backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || ’white’,borderColor: ’#CCC’,borderWidth: 1,shadow: false},tooltip: {formatter: function() {return ’<b>’+ this.x +’</b><br/>’+this.series.name +’: ’+ this.y +’<br/>’+’Total: ’+ this.point.stackTotal;}},plotOptions: {column: {stacking: ’normal’,dataLabels: {enabled: true,color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || ’white’}}},series: [{name: ’John’,data: [5, 3, 4, 7, 2]}]});});</script></head><body><div style='width: 800px;height: 400px'></div></body></html>
同樣,繪制這個圖需要的也是雙維數(shù)組,我嘗試了幾個方法,使用 series.setData(data); 可是實現(xiàn)數(shù)據(jù)的重新指定!
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。
相關(guān)文章:
1. xml中的空格之完全解說2. 低版本IE正常運行HTML5+CSS3網(wǎng)站的3種解決方案3. 淺談SpringMVC jsp前臺獲取參數(shù)的方式 EL表達式4. 得到XML文檔大小的方法5. 將properties文件的配置設(shè)置為整個Web應(yīng)用的全局變量實現(xiàn)方法6. React實現(xiàn)一個倒計時hook組件實戰(zhàn)示例7. PHP字符串前后字符或空格刪除方法介紹8. asp中response.write("中文")或者js中文亂碼問題9. Jsp中request的3個基礎(chǔ)實踐10. css進階學(xué)習(xí) 選擇符
