ng2-charts icon indicating copy to clipboard operation
ng2-charts copied to clipboard

Data zoom option in ng2-charts

Open BattiniSantthosh opened this issue 5 years ago • 3 comments

Is there any option to zoom the data as below link?

https://echarts.apache.org/examples/en/editor.html?c=area-simple

BattiniSantthosh avatar Jan 25 '20 17:01 BattiniSantthosh

Same question here !

Andromelus avatar Feb 28 '20 08:02 Andromelus

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 avatar Sep 23 '20 08:09 danmana

@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';

RyanEntrostat avatar Dec 02 '20 12:12 RyanEntrostat