ng2-charts
ng2-charts copied to clipboard
Data zoom option in ng2-charts
Is there any option to zoom the data as below link?
https://echarts.apache.org/examples/en/editor.html?c=area-simple
Same question here !
There are a few chart.js plugins that have zoom funcitonality:
-
chartjs-plugin-crosshair
- this is the one I recommend
- works great, has some nice extra features (sync between charts, crosshair value interpolation)
- demo - drag on chart to select zoom area
-
chartjs-plugin-zoom
- I couldn't get this one to work
- demo - use mouse scroll wheel
@danmana - In order to get the chartjs-plugin-zoom to work you need to add the following imports to the module:
import 'hammerjs'; import 'chartjs-plugin-zoom';