2013-05-17 41 views

回答

1

您可以導出爲jpeg,但它在瀏覽器上呈現,因爲api沒有提供位置。

API網址:http://api.highcharts.com/highcharts#exporting

$( '#集裝箱')highcharts({

credits: { 
     enabled: false 
    }, 

    xAxis: { 
     categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] 
    }, 

    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] 
    }], 

    navigation: { 
     buttonOptions: { 
      enabled: false 
     } 
    }, 
    exporting: { 
     type: 'image/jpeg' 

    } 

}); 
相關問題