在Highcharts信用中使用图像

时间:2013-09-26 11:38:07

标签: javascript jquery highcharts

是否可以将图像用于Highcharts credits选项?我希望添加一个小徽标而不是文本。我尝试使用style属性设置背景图像,并将图像标记而不是文本传递给text属性,但图像永远不会出现。

credits: {
    text: '',
    href: 'http://www.example.com',
    style: {
        backgroundImage: 'url(http://placehold.it/50x20)'
    }
}

JSFiddle

1 个答案:

答案 0 :(得分:2)

我看不到使用图表信用选项的方法,但没有什么可以阻止您使用渲染器添加徽标:

var chart = $('#container').highcharts();
chart.renderer.image('http://placehold.it/50x20',350,360,50,20).add();

http://jsfiddle.net/yVTmG/