加入联想到圆环图 - jqPlot(Add Legend to Donut Chart - jqP

2019-10-17 04:30发布

OK,这应该是比较简单的:

  • 我加入了圆环图,它不工作
  • 然而,“传奇”(像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' }
    }
  });
});

我究竟做错了什么?

Answer 1:

变色龙,

它看起来像你做了愚蠢的错误。 :)

首先结束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' }
    });
});

我没有测试它。 但我认为它应该工作。

谢谢。



文章来源: Add Legend to Donut Chart - jqPlot