将动态json数组传递给Highcharts饼图

时间:2011-11-21 17:43:50

标签: arrays json highcharts

我将json编码的字符串(例如,$ TEXT2组成[“chrome”,“15”,“firefox”,“20”])从xcode传递到javascript中的数组(例如.arr)。现在我想通过这个数组包含json字符串动态到Highcharts Pie。 HTML代码是

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=20, user-scalable=no;" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Pie chart</title>

<!-- 1. Add these JavaScript inclusions in the head of your page -->
<script type="text/javascript" src="jquery-1.6.2.js"></script>
<script type="text/javascript" src="highcharts.js"></script>
<script type="text/javascript" src="jquery.form.js"></script>
<!-- 2. Add the JavaScript to initialize the chart on document ready -->
<script type="text/javascript">

var chart;
var arr = $TEXT2;

$(document).ready(function(){
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Interactive Pie'
},
tooltip: {
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.y +' %';
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false
},
showInLegend: true
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: []
}]
});
});
</script>
<body>
<br>
<!-- 3. Add the container -->
<div id="container" style="width: 300px; height: 350px; margin: 0 auto"></div>
<!-- 2. Add the JavaScript to initialize the chart on document ready -->
</body>
</html>

我试图使用getjson方法,虽然我不知道它的用法。 因为我想将我的数组,即arr传递给Highcharts中的data [],我正在做:

$.getJSON("arr", function(json) {
chart.series = json;               
var chart = new Highcharts.Chart(chart);
     });

任何人都可以帮我解决问题。 提前谢谢。

4 个答案:

答案 0 :(得分:9)

我会在document.ready函数中包装JSON调用,然后在getJSON的成功回调中包含绘图调用:

$(document).ready(function() {

  $.getJSON("arr", function(json) {

    chart = new Highcharts.Chart({
      chart: {
        renderTo: 'container',
        plotBackgroundColor: null,
        plotBorderWidth: null,
        plotShadow: false
      },
      title: {
        text: 'Interactive Pie'
      },
      tooltip: {
        formatter: function() {
          return '<b>'+ this.point.name +'</b>: '+ this.y +' %';
        }
      },
      plotOptions: {
        pie: {
          allowPointSelect: true,
          cursor: 'pointer',
          dataLabels: {
            enabled: false
          },
          showInLegend: true
      },
      series: [{
        type: 'pie',
        name: 'Browser share',
        data: json
      }]
    });
  });
});

当然,为了实现这一点,您应该修改后端代码以返回HighCharts期望的格式正确的数组数组:

[["chrome",15],["firefox",20]]

您可以在JS中“修复”返回的​​数组,但最好在JSON后端调用中执行此操作。

答案 1 :(得分:1)

<script type="text/javascript">
    jQuery(document).ready(function () {
        alert('call pie');

        var data1 = $("#dataidd").val();
        alert('pie data' + data1);


        /*--------Pie Chart---------*/
        $('#PieChartDiv').highcharts({
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            title: {
                text: 'Comparision and Analysis Report'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: true,
                        format: '<b>{point.name}</b>: {point.percentage:.1f} %',
                        style: {
                            color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
                        }
                    }
                }
            },
            series: [{
                type: 'pie',
                name: 'Issue Details',
                // data: jQuery.parseJSON(data1)
                data: JSON.parse(data1)

            }]
        });
    });
    </script>

答案 2 :(得分:0)

您可以直接将图表与JSON数据绑定。您只需将json属性名称设置为高图标准。 'Y'表示价值,'name'表示标签。

你的JSON应该如下:

[ { name: "Chrome", y: 25 }, { name: "Firefox", y: 20 } ]

答案 3 :(得分:0)

简单地说:

使用Jquery创建数组如下:

$.each(data['values'], function(i, val) {
                    x_values_sub['name'] = i
                    x_values_sub['y'] = val
                    x_values.push(x_values_sub);
                    x_values_sub = {};
});

//然后使用HighCharts作为数据调用此数组

series: [{
                            type: 'pie',
                            name: null,
                            data: x_values
}]

//经过测试,它适用于简单的javascript对象:

Object Part1Name: 25 Part2Name: 75__proto__: Object