2017-06-16 28 views
0

誰もこのグラフの境界線を削除する方法を知っていますか? グラフはjqplotで作成されています。 enter image description herejqplotでグラフの枠線を削除するにはどうすればよいですか?

私はボックスの境界線を意味します。

私のコードは以下の通りです。

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

答えて

関連する問題