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

时间:2017-06-16 10:29:19

标签: graph charts jqplot

有谁知道如何删除此Graph的边框线? 该图是用jqplot制作的。 enter image description here

我的意思是盒子的边界线,在一个外面。

我的代码如下。

$(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' }
        }
    );
});

请帮我摆脱盒子的边界....