2

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

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

JSFiddle

4

1 回答 1

2

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

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

http://jsfiddle.net/yVTmG/

于 2013-09-26T12:29:46.773 回答