标签: highcharts
我想在高图表标题中使用HTML。类似的东西:
{ "title": "An <b>Important</b> Chart" }
有没有简单的方法呢?
答案 0 :(得分:1)
您需要使用useHtml: true:
useHtml: true
... title: { text: 'An <b>Important</b> Chart', useHtml: true }, ...
Documentation - Fiddle