我正在尝试使用Highcharts在图表标题中添加图像。图像没有显示。也没有脚本错误。我怀疑highcharts是否支持标题中的图像。任何帮助将不胜感激。谢谢。提前。
以下是参考小提琴:http://jsfiddle.net/LHSey/123/
chart.setTitle({
text: "Testing" + " " + "../images/appendImage.png "
}, {
text: "This is a test"
});
答案 0 :(得分:9)
您需要将useHTML
设置为true
,然后将图片插入HTML:
chart.setTitle({
useHTML: true,
text: "Testing" + " " + "<img src='../images/appendImage.png' alt='' />"
}, {
text: "This is a test"
});
<强> Working fiddle 强>