1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| dataZoom:[ { id: 'dataZoomX', show:true, backgroundColor:"rgba(47,69,84,0)", type: 'slider', dataBackground:{ lineStyle:mylineStyle, areaStyle:myareaStyle, }, fillerColor:"rgba(167,183,204,0.4)", borderColor:"#ddd", filterMode: 'filter', xAxisIndex:0, yAxisIndex:[0,2], radiusAxisIndex:3, angleAxisIndex:[0,2], start: 30, end: 70, startValue:10, endValue:100, orient:"horizontal", zoomLock:false, 则锁定选择区域的大小,也就是说,只能平移,不能缩放。 throttle:100, zoomOnMouseWheel:true, moveOnMouseMove:true, left:"center", top:"top", right:"auto", bottom:"auto",
}, { id: 'dataZoomY', type: 'inside', filterMode: 'empty', disabled:false, xAxisIndex:0, yAxisIndex:[0,2], radiusAxisIndex:3, angleAxisIndex:[0,2], start: 30, end: 70, startValue:10, endValue:100, orient:"horizontal", zoomLock:false, throttle:100, zoomOnMouseWheel:true, moveOnMouseMove:true, } ]
|