var instance = Highcharts.chart('container', {
title: {
text: 'Solar Employment Growth by Sector, 2010-2016'
},
subtitle: {
text: 'Source: thesolarfoundation.com'
},
yAxis: {
title: {
text: 'Number of Employees'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
plotOptions: {
series: {
label: {
connectorAllowed: false
},
pointStart: 2010
}
},
exporting:{
\t buttons:{
\t contextButton: {
\t enabled: false
}
}
},
series: [{
name: 'Installation',
data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
}, {
name: 'Manufacturing',
data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434]
}, {
name: 'Sales & Distribution',
data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387]
}, {
name: 'Project Development',
data: [null, null, 7988, 12169, 15112, 22452, 34400, 34227]
}, {
name: 'Other',
data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111]
}],
responsive: {
rules: [{
condition: {
maxWidth: 500
},
chartOptions: {
legend: {
layout: 'horizontal',
align: 'center',
verticalAlign: 'bottom'
}
}
}]
}
});
function printChart() { instance.print() ;};
function exportPngChart() { instance.exportChart() ;};
function exportJpegChart() { instance.exportChart({
\t \t \t \t \t type: 'image/jpeg'
\t \t \t \t }) ;};
function exportPdfChart() { instance.exportChart({
\t \t \t \t \t type: 'application/pdf'
\t \t \t \t }) ;};
function exportSvgChart() { instance.exportChart({
\t \t \t \t \t type: 'image/svg+xml'
\t \t \t \t }) ;};
#container {
\t min-width: 310px;
\t max-width: 800px;
\t height: 400px;
\t margin: 0 auto
}
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/series-label.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<button onclick="printChart()">print</button>
<button onclick="exportPngChart()">export png</button>
<button onclick="exportJpegChart()">export jpeg</button>
<button onclick="exportPdfChart()">export pdf</button>
<button onclick="exportSvgChart()">export svg</button>
<div id="container"></div>
ああ輝かしいです!私は少し違って(インスタンスを作成せずに)これを実装しました。しかし、私はCSVをダウンロードする必要がありましたが、これは簡単ではありませんでした。 APIリファレンスとソースコードを掘り下げた後、私はこれを動作させました: 'instance.downloadCSV(instance.getCSV(true));' https://api.highcharts.com/class-reference/Highcharts.Chart#toc23 –
あなたは大歓迎です。申し訳ありませんが、私はCSVに注意を払っていました。 – Dmitry