2014-06-10 62 views
1

當我們以PDF格式導出圖表時,我們得到的東西看起來像是PDF文件中的2頁。現場演示它here。我們不確定是什麼原因造成的。將Highchart導出爲PDF格式的結果分爲2頁

當我們的出口,我們正在改變,像這樣的圖表屬性:

chartMainLoc.exportChart(
    { 
    type: 'application/pdf', 
    sourceHeight: this.chartHeight, 
    sourceWidth: this.chartWidth, 
    scale: 1 
    }, 
    { 
    title: { 
     text: '<span style="font-weight:bold">Labor Force, Employment and Unemployment for Pinellas County in June, 2013</span><br /><br /><span style="font-weight:bold;font-size:9pt">Labor Force Graph</span><br /><br /><span style="font-size:10px; font-weight:normal">The graph below shows the monthly not seasonally adjusted Labor Force, Employment and Unemployment data for Pinellas County in June, 2013.</span>' 
    }, 
    subtitle: { 
     text: 'Source: Labor Market Statistics, Local Area Unemployment Statistics Program and Online Advertised Job Data<br />Downloaded: 06/10/2014 4:20 PM' 
    }, 
    legend: { 
     y: -50 
    }, 
    chart: { 
     spacingLeft: 0, 
     spacingBottom: 10, 
     shadow: false, 
     height: chartMainLoc.chartHeight + 20 
    } 
    } 
) 

回答