0

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

1 回答 1

2

你是对的 - 你应该使用加载事件为导出的图像添加额外的文本:http: //jsfiddle.net/3bQne/88/

chart.exportChart(null, {
        chart: {
            backgroundColor: '#FFFFFF',
            width: 972,
            height: 480,
            events: {
                load: function () {
                    this.renderer.text('Filtered', 5, 10)
                        .attr({
                        rotation: 0
                    })
                        .css({
                        color: '#4572A7',
                        fontSize: '8px',
                        fontStyle: 'italic'
                    })
                        .add();
                }
            }
        }
    });
于 2013-05-13T10:52:23.373 回答