시리즈 영역 마우스 오버 시 커서의 모양을 설정 합니다.
name | type | required | description |
---|---|---|---|
cursor | string |
선택(default) | 커서 모양 |
value | description |
---|---|
cursor | 기본 모양 |
pointer | 포인터 모양 |
myChart.setOptions({
chart: {
type: "bar"
},
plotOptions: {
bar: {
cursor : "pointer"
}
},
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 |