Changes between Version 4 and Version 5 of Ticket #10856
- Timestamp:
- Mar 23, 2010, 1:53:48 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10856 – Description
v4 v5 12 12 chart.setWindow(scaleX, scaleY, offsetX, offsetY, {duration:1800}).render(); 13 13 }}} 14 15 16 This patch also implements a "zoomIn" method in Chart2D, it supports chart zooming to a certain axis range. 17 e.g. 18 19 {{{ 20 chart.zoomIn("x",[50,80]);//chart zooms to 50-80 range on axis x 21 }}} 22 23 demo: '''test_axisZoomControl.html''' in the attachment.