툴팁의 html tag 사용 여부를 설정합니다.
| name | type | required | description |
|---|---|---|---|
| useHTML | boolean |
선택(false) | html tag 사용 여부 |
myChart.setOptions({
chart: {
type: "column"
},
tooltip: {
headerFormat: "<span style='color: {series.color}; font-weight: bold'>{series.name}</span><br/>",
pointFormat: "{point.x}, {point.y}",
useHTML: true // 툴팁의 html tag 사용 여부
},
series: [{
name: "서울",
data : [60,40,20,80]
},{
name: "인천",
data : [30,50,90,70]
},{
name: "부산",
data : [40,70,30,60]
}]
}, {
append: true,
redraw: true
});

| version | desc |
|---|---|
| 7.3.0.0 |