0

我有一个网站,可以在其中创建带有 highcharts 的图表。现在我想在图表中间添加我们的标志。现在看起来很棒,但是我添加的图像导出失败。当我删除徽标时,导出再次起作用。有解决方法还是这是一个错误?其他人有这个问题吗?

这是我的代码:

 $(document).ready(function () {

        $('#container').highcharts({

            chart: {
                height: $(window).innerHeight() * 0.98,
                type: 'scatter',
                zoomType: 'xy',
                backgroundColor: 'transparent',
                events: {
                    load: function() {
                        this.renderer.image('/Content/PPC2012/Images/Charts/logoopacity.png', this.plotLeft + (this.plotWidth  * 0.5) - (729  * 0.5) - 75, this.plotTop  + (this.plotHeight * 0.5) - (450 * 0.5) - 50, this.plotLeft + (this.plotWidth  * 0.5) + (729  * 0.5) - 75, this.plotTop  + (this.plotHeight * 0.5) + (450 * 0.5) - 50).attr({'zIndex' : 10}).add();}
                },
            },
4

1 回答 1

2

尝试使用完整路径,例如:http: //jsfiddle.net/F4qS8/704/这工作正常。

chart: {
    renderTo: 'container',
    events: {
        load: function () {

            this.renderer.image('http://highcharts.com/demo/gfx/sun.png', 100, 100, 30, 30)
                .add();
        }
    }
},
于 2013-06-26T08:52:03.970 回答