是否可以将图像用于Highcharts credits
选项?我希望添加一个小徽标而不是文本。我尝试使用style
属性设置背景图像,并将图像标记而不是文本传递给text
属性,但图像永远不会出现。
credits: {
text: '',
href: 'http://www.example.com',
style: {
backgroundImage: 'url(http://placehold.it/50x20)'
}
}
答案 0 :(得分:2)
我看不到使用图表信用选项的方法,但没有什么可以阻止您使用渲染器添加徽标:
var chart = $('#container').highcharts();
chart.renderer.image('http://placehold.it/50x20',350,360,50,20).add();