我有一个网站,可以在其中创建带有 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();}
},
},