마우스 드래그시 zoom 적용 방법을 설정 하는 속성입니다.
name | type | required(default) | description |
---|---|---|---|
zoomType | string |
선택(none) | 마우스 드래그시 zoom 적용 방법 설정 |
Value | Description |
---|---|
none | 사용안함 |
x | X축으로만 zoom 처리 |
y | Y축으로만 zoom 처리 |
xy | X축, Y축 양방향 zoom 처리 |
//차트 기본 속성 설정
myChart.setOptions({
chart: {
zoomType : "x"
}
}, {
append: true,
redraw: true
});
version | desc |
---|---|
7.3.0.0 |