我有一个用于添加 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*/
}
}
);