首页 > 其他 > 详细

highcharts异步获取数据

时间:2014-02-07 21:02:01      阅读:419      评论:0      收藏:0      [点我收藏+]

页面异步代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
$(function () {
            var chart_validatestatics;
            $(document).ready(function () {
 
                var options_validatestatics = {
                    chart: {
                        renderTo: ‘container_validatestatics‘,
                        type: ‘column‘
                    },
                    title: {
                        text: ‘验票分析‘
                    },
                    subtitle: {
                        text: ‘tourol.cn‘
                    },
                    xAxis: {
                },
                yAxis: {
                    title: {
                        text: ‘人数‘
                    }
                },
                plotOptions: {
                    bar: {
                        dataLabels: {
                            enabled: true
                        }
                    }
                },
                tooltip: {
                    formatter: function () {
                        return ‘<b>‘ + this.x + ‘</b><br/>‘ + this.series.name + ‘: ‘ + this.y + ‘人‘;
                    }
                },
                credits: {
                    enabled: false
                },
                series: [{
                    name: "验票用户",
                    width: 3
                }]
            }
 
            $.get("/ajaxhandler/dataupdate.ashx?operate_type=validatestatics", function (data) {
                var xatrnames = [];
                var yvalidators = [];
                for (var i = 0; i < data.rows.length; i++) {
                    xatrnames.push([
                            data.rows[i].atrname
                        ]);
                    yvalidators.push([
                            data.rows[i].atrname,
                            parseInt(data.rows[i].nums)
                        ]);
                }
                alert(xatrnames + yvalidators);
                options_validatestatics.xAxis.categories = xatrnames
                options_validatestatics.series[0].data = yvalidators;
                chart_validatestatics = new Highcharts.Chart(options_validatestatics);
            });
        });
    });

 

这里要注意的是:x轴数组定义好后,定义y轴数据的时候要把对应在x轴上的值也push到数组里,不然会造成无法显示的情况

 

对应的在ajaxhandler中,拼接字符串并返回即可

1
2
3
4
5
6
7
8
9
10
string json = "{\"rows\":[";
        for (int i = 0; i < datas.Rows.Count; i++)
        {
            json += "{\"atrname\":\"" + datas.Rows[i]["name"] + "\",\"nums\":\"" + datas.Rows[i]["nums"] + "\"},";
        }
        json = json.TrimEnd(‘,‘);
        json += "]}";
        context.Response.Write(json);
        context.Response.Flush();
        context.Response.End();

highcharts异步获取数据

原文:http://www.cnblogs.com/TivonStone/p/3539766.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!