UNPKG

echarts

Version:

A powerful charting and visualization library for browser

21 lines (16 loc) 572 B
/** * @file Data zoom model */ module.exports = require('./DataZoomModel').extend({ type: 'dataZoom.inside', /** * @protected */ defaultOption: { disabled: false, // Whether disable this inside zoom. zoomLock: false, // Whether disable zoom but only pan. zoomOnMouseWheel: true, // Can be: true / false / 'shift' / 'ctrl' / 'alt'. moveOnMouseMove: true, // Can be: true / false / 'shift' / 'ctrl' / 'alt'. preventDefaultMouseMove: true } });