2

我刚开始使用 JqPlot 并想显示一个小图表

但是,顶部和左侧总是有一个小的边距。

顶部和左侧的填充

查看生成的 css,jqplot-event-canvas 被赋予绝对位置,顶部和左侧设置为 10px。

有没有一种简单的方法来解决这个问题,以便在没有额外间距的情况下定位饼图?

我试图在网格和饼图渲染器选项中将填充设置为 0。还设置 show:false 在轴上,标题,ledged ...,有什么想法吗?

4

1 回答 1

8

Try setting the gridPadding like this:

var plot1 = $.jqplot('pie1', [data], {
    gridPadding: {top:0, bottom:0, left:0, right:0},
....

Because by default, each plot has the following grid padding:

{top:10, right:10, bottom:23, left:10};

I think this might explain the issue you are seeing.

于 2012-12-05T07:20:41.223 回答