Highcharts AJAX JSON 实现动态数据交互显示 JQuery 图表 柱形图 主要使用的JQuery AJAX JSON SpringMVC 基于之前的2篇框架添加的新功能
这是第一篇实例的步骤与代码。还有整个项目的结构图。
http://my.oschina.net/xshuai/blog/345117
原创的博文。转载注明出处。大家赶紧收藏吧。
本人highcharts新手。只是做个了练手的实例。还望大神指点。
上个图给大家看下效果。
点击 查看图表 如下图展示效果
-
Highcharts简介
Highcharts 是一个用纯JavaScript编写的一个图表库, 能够很简单便捷的在web网站或是web应用程序添加有交互性的图表,并且免费提供给个人学习、个人网站和非商业用途使用。HighCharts支持的图表类型有曲线图、区域图、柱状图、饼状图、散状点图和综合图表。
2.Highcharts 中文API 实例网站
http://www.hcharts.cn/index.PHP---------------------中文官方网站
http://www.hcharts.cn/docs/index.PHP----------------中文教程
http://www.hcharts.cn/demo/index.PHP---------------在线演示
http://bbs.hcharts.cn/forum.PHP-----------------------中文论坛
3.下载highcharts 与使用
http://www.hcharts.cn/resource/index.php使用最新的就可以了。
http://www.hcharts.cn/docs/index.php?doc=start-download网站里面有详细的介绍每个文件夹的作用。
4.需要的文件 jquery 自己下载就好了
1
2
|
<
script
type
=
"text/javascript"
src
"${ctx}/js/jquery-1.10.2.js"
></
script
>
"${ctx}/js/highcharts/highcharts.js"
>
|
6.Controller代码
@RequestMapping
(value=
"chartpage"
)
HttpServletResponseresponse){
return
"views/user/chartpage"
;
}
与第
5
步的想对应。
>
div
"container"
style
"width:800px;height:400px;margin:0auto"
div
>
Stringchart(HttpServletRequestrequest,monospace!important; border:0px!important; bottom:auto!important; float:none!important; height:auto!important; left:auto!important; line-height:1.1em!important; outline:0px!important; overflow:visible!important; position:static!important; right:auto!important; top:auto!important; vertical-align:baseline!important; width:auto!important; font-size:1em!important; min-height:inherit!important; background:none!important">HttpServletResponseresponse)
@H_976_301@throws
Exception{
result=userService.chart();
if
(log.isErrorEnabled()){
}
result=
@H_404_472@;
}
}
8.2Service
将list对象存入map中。并转为json字符串数组
/**
*highcharts用的
*@Title:chart
*@return
*/
Stringchart(){
List<Map<String,Object>>list=userDao.chart();
Strings=gson.toJson(map);
return
s;
Stringsql=
"selectu.name,u.agefromuserinfou"
;
jdbcTemplate.queryForList(sql);
以上基本完成了数据的获取和转JSON字符串数组剩下就是在页面接受JSON并填充到highcharts图表里面
9.JS代码。使用AJAX传递过来。并填充到highcharts里面即可。最后一步,也是最要人命的一步。
一定要注意json字符串数组的解析。本人就是在这里纠结了半天多。怨自己没好好学习jquery。和强大的JSON字符串。
本人的json为 所以在遍历的时候需要注意一下自己的list这个数组里面的数据。可以忽略这句话。是本人的失误。
{"list":[{"name":"一号","age":19},{"name":"二号","age":22},{"name":"test","age":19}....]}
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
$(
function
(){
var
x=[];
//X轴
y=[];
//Y轴
xtext=[];
//X轴TEXT
color=[
"gray"
"pink"
"red"
"blue"
"yellow"
"green"
"#fff"
];
$.ajax({
type:
'get'
url:
'${ctx}/user/chart'
//请求数据的地址
success:
(data){
json=eval(
"("
+data+
")"
);
s=1;
for
(
key
in
json.list){
json.list[key].y=json.list[key].age;
//给Y轴赋值
xtext=json.list[key].name;
//给X轴TEXT赋值
json.list[key].color=color[key];
}
chart.series[0].setData(json.list);
//数据填充到highcharts上面
},
error:
(e){
}
});
chart=
new
Highcharts.Chart({
chart:{
title:{
xAxis:{
categories:xtext
yAxis:{
title:{
'年龄'
//Y轴的名称
series:[{
name:
"姓名"
}]
});
});
个人微博http://weibo.com/zxshuai319
原文链接:https://www.f2er.com/ajax/163276.html