如何在 Highcharts 标题和副标题中添加图像

How to add image in Highcharts Title and subtitle

我正在尝试使用 Highcharts.The 在图表标题中添加图像 图像不显示 up.There 没有脚本错误,因为 well.I 怀疑 highcharts 是否支持标题中的图像或not.Any 会提前 appreciated.Thank 你的帮助。

这里是fiddle供参考:http://jsfiddle.net/LHSey/123/

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

您需要将 useHTML 设置为 true,并将您的图片插入 HTML:

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

Working fiddle.