0
我有一個可選功能,用於添加renderer.text文本對象的圖表。當導出圖表時,我只希望在這種情況下添加圖表。下面我有關於我如何訪問渲染器和導出器的源代碼。在評論部分插入這裏是我認爲它可能會去,但我不確定的語法。謝謝Highcharts renderer.text僅作爲導出
myChart.renderer.text('Filtered', 5, 10)
.attr({rotation: 0})
.css({color: '#4572A7', fontSize: '8px', fontStyle:'italic'})
.add();
myChart.exportChart(null,
{chart:
{backgroundColor: '#FFFFFF', width: 972, height:480 /*Insert Here*/
}
}
);