https://jsfiddle.net/Kondaldurgam/akb4Lj61
我试图使用Highcharts在图表中添加图片。我怀疑highcharts是否支持图片。我想在空的内容中导入图片。任何帮助将不胜感激。谢谢你提前。
Highcharts.chart('container', {
chart: {
type: 'bubble',
plotBorderWidth: 1,
zoomType: 'xy'
},
title: {
text: 'No Date Availavle'
},
});
答案 0 :(得分:1)
https://jsfiddle.net/akb4Lj61/3/
这是一个更新的jsfiddle,你只需要添加
renderer.image('https://www.highcharts.com/samples/graphics/sun.png', 100, 100, 30, 30)
.add();
在图表中,将url,x位置,y位置和高度,宽度作为参数。