2017-06-16 26 views
0

有誰知道如何去除此圖的邊框線? 該圖是用jqplot製作的。 enter image description here如何刪除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' } 
     } 
    ); 
}); 

請幫我擺脫箱的界線....

回答