Is it possible to have zooming option in NVD3 charts as like in Highcharts?

d3.js, javascript, nvd3.js

Solution

There is a "Line Chart with View Finder" example that uses `nv.models.lineWithFocusChart()`. This chart type sports an additional "mini map" below the main chart that you can use to zoom and pan the chart:

See: Line Chart with View Finder

Problem

I recently started using NVD3 charts and like to have zooming option like Highcharts. Is it possible?

Original source