JS highcharts动态柱状图原理及实现
作者:cuisuqiang 时间:2024-04-22 12:52:17
实现一个柱状图,这个柱状图的高度在不停的刷新,效果如下:
官网是没有动态刷新的示例的,由于需要我查看了其源码,并根据之前示例做出了动态柱状图的效果,希望对同学们有用!
看一下代码:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>Highcharts Example</title>
<script language="javascript" type="text/javascript" src="jquery.min.js"></script>
<script language="javascript" type="text/javascript" src="highcharts.js"></script>
<script language="javascript" type="text/javascript" src="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: '当前产值'
},
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 id="container" style="width: 800px;height: 400px"></div>
</body>
</html>
同样,绘制这个图需要的也是双维数组,我尝试了几个方法,使用 series.setData(data); 可是实现数据的重新指定!
来源:https://www.iteye.com/blog/cuisuqiang-1555452
标签:JS,highcharts,动态,柱状图
0
投稿
猜你喜欢
Python之split函数的深入理解
2022-12-22 19:58:25
SQLServer Execpt和not in 性能区别
2012-01-29 17:53:24
浅析pip安装第三方库及pycharm中导入第三方库的问题
2023-01-24 22:47:45
Python Pandas基础操作详解
2022-02-18 11:17:07
仿豆瓣分页原型(Javascript版)
2007-11-05 14:04:00
selenium自动化测试简单准备
2023-02-07 13:04:12
php购物车实现方法
2023-11-16 22:54:51
C#从数据库读取图片并保存的两种方法
2024-01-12 14:39:22
Python unittest生成测试报告过程解析
2023-02-18 13:13:17
MYSQL教程:如何选择正确的数据列类型
2009-02-27 16:05:00
如何基于线程池提升request模块效率
2023-06-12 11:13:44
Pymysql实现往表中插入数据过程解析
2022-03-24 10:31:43
Python的Flask项目中获取请求用户IP地址 addr问题
2021-09-08 08:38:47
IDEA最新激活码永久激活教程附激活失败原因汇总
2023-12-13 11:57:29
十行Python代码实现文字识别功能
2024-01-01 14:55:09
cmd运行python文件时对结果进行保存的方法
2023-03-12 03:18:02
Python绘制数据图表的超详细教程
2021-03-05 01:54:36
Python实现去除列表中重复元素的方法小结【4种方法】
2022-10-17 12:24:09
Python实现监控键盘鼠标操作示例【基于pyHook与pythoncom模块】
2023-03-22 19:15:40
php之Aes加密案例讲解
2023-06-11 12:59:12