Graph 如何删除jqplot中的图形边框?

Graph 如何删除jqplot中的图形边框?,graph,charts,jqplot,Graph,Charts,Jqplot,有人知道如何删除此图的边界线吗?? 这张图是用jqplot绘制的。 我是说盒子的边界线,在一个盒子外面 我的代码如下 $(document).ready(function(){ jQuery.jqplot.config.enablePlugins = true; plot1 = jQuery.jqplot('pieChart', [ all data to be drawn], { title: ' ', seriesDefaul

有人知道如何删除此图的边界线吗?? 这张图是用jqplot绘制的。

我是说盒子的边界线,在一个盒子外面

我的代码如下

$(document).ready(function(){
    jQuery.jqplot.config.enablePlugins = true;
    plot1 = jQuery.jqplot('pieChart', [ all data to be drawn], 
        {   title: ' ', 
            seriesDefaults: {
                shadow: false, 
                renderer: jQuery.jqplot.PieRenderer, 
                rendererOptions: { padding: 2, sliceMargin: 2, showDataLabels: true } 
            },
            legend: { show:false, location: 'e' }
        }
    );
});
请帮我摆脱盒子的边界

一些提示:


Thnx,第一个链接帮助了我!