如何在Highcharts Title和subtitle中添加图像

Aru*_*run 5 javascript image title highcharts

我正在尝试使用Highcharts在图表标题中添加图像.图像没有显示.也没有脚本错误.我怀疑highcharts是否支持标题中的图像.任何帮助将不胜感激.谢谢你提前.

这里有小提琴供参考:http: //jsfiddle.net/LHSey/123/

chart.setTitle({
            text: "Testing" + " " + "../images/appendImage.png "
        }, {
            text: "This is a test"
        });
Run Code Online (Sandbox Code Playgroud)

Mat*_*att 10

您需要设置useHTMLtrue,并将图像作为HTML插入:

chart.setTitle({
    useHTML: true,
    text: "Testing" + " " + "<img src='../images/appendImage.png' alt='' />"
}, {
    text: "This is a test"
});
Run Code Online (Sandbox Code Playgroud)

工作小提琴.