添加图例到圆环图 - jqPlot

时间:2012-08-26 12:29:00

标签: javascript jquery charts jqplot donut-chart

好的,这应该相对简单:

enter image description here

  • 我正在添加一个圆环图,它可以正常工作
  • 然而,“传奇”(如Head (+)以及相应的颜色)并未显示。

代码:

$(document).ready(function(){
  var s1 = [['Head (+)',<?php echo $headScore; ?>], ['Head (-)',<?php echo 6-$headScore; ?>]];
  var s2 = [['Body (+)',<?php echo $totalScore-$headScore; ?>], ['Body (-)',<?php echo 7-$totalScore+$headScore; ?>]];

  var plot3 = $.jqplot('linkchart', [s1,s2], {
      title:"Score Profile",
    seriesDefaults: {
      // make this a donut chart.
      renderer:$.jqplot.DonutRenderer,
      rendererOptions:{
        // Donut's can be cut into slices like pies.
        sliceMargin: 3,
        // Pies and donuts can start at any arbitrary angle.
        startAngle: -90,
        showDataLabels: false
      },
      legend: { show:true, location: 'e' }
    }
  });
});

我做错了什么?

1 个答案:

答案 0 :(得分:5)

KAMELEON,

看起来你犯了一个愚蠢的错误。 :)

首先结束seriesDefaults属性,然后定义图例。

您已将图例放在seriesDefaults中。

var plot3 = $.jqplot('linkchart', [s1,s2], {
    title:"Score Profile",
        seriesDefaults: {
            // make this a donut chart.
            renderer:$.jqplot.DonutRenderer,
            rendererOptions:{
                // Donut's can be cut into slices like pies.
                sliceMargin: 3,
                // Pies and donuts can start at any arbitrary angle.
                startAngle: -90,
                showDataLabels: false
            } // Not here...
        },
        //Place the legend here....
        legend: { show:true, location: 'e' }
    });
});

我还没有测试过。但我认为它应该有用。

谢谢。