Jqplot饼图不使用div容器的整个宽度和高度

时间:2012-11-21 10:13:43

标签: charts width jqplot

注意到显示的饼图没有使用容器的整个宽度和高度。

我可以看到一些空格。附上图片。

enter image description here

我画了div的边框。很明显,馅饼没有充分利用宽度和高度。

我如何解决这个问题?

任何帮助都将不胜感激。

提前致谢。

1 个答案:

答案 0 :(得分:2)

看起来默认的饼图渲染器的填充为20px。通过调整填充来减少它,如:

jQuery("#'. $id .'").jqplot([your data here],
       {
          seriesDefaults: {
            renderer: jQuery.jqplot.PieRenderer,
            rendererOptions: {
              padding: 10
            }
       }
});