2015-09-14 38 views
1

我想要highcharts下載圖像以在圖像中具有圓角邊框。因爲我已經設定圓角的邊框在這個小提琴: Fiddle, highcharts with rounded borders高度圖下載/導出帶有圓角的圖像

$(function() { 
    $('#container').highcharts({ 
     chart: { 
      borderColor: '#EBBA95', 
      borderRadius: 20, 
      borderWidth: 2, 
      type: 'line' 
     }, 
     xAxis: { 
      categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] 
     }, 
     yAxis: { 
     }, 
     legend: { 
      layout: 'vertical', 
      backgroundColor: '#FFFFFF', 
      floating: true, 
      align: 'left', 
      x: 100, 
      verticalAlign: 'top', 
      y: 70 
     }, 
     tooltip: { 
      formatter: function() { 
       return '<b>' + this.series.name + '</b><br/>' + 
        this.x + ': ' + this.y; 
      } 
     }, 
     plotOptions: { 
     }, 
     series: [{ 
      data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4] 
     }], 
     exporting: { 
      enabled: true 
     } 
    }); 
}); 

的問題是,當我請從右上角的菜單按鈕,這個圖表的PNG圖像時,圖像不包含圓角的邊框。請如果有人知道告訴我,我該怎麼做?

回答

1

看起來可能的錯誤,所以我報給我們的開發here

+0

感謝@Sebastian先生。 – Fahad