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

时间:2015-01-07 10:48:06

标签: javascript image highcharts title

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

以下是参考小提琴:http://jsfiddle.net/LHSey/123/

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

1 个答案:

答案 0 :(得分:9)

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

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

<强> Working fiddle