zoomToRange method
Zoom to a specific data fraction range, pushing current state to history.
Implementation
ChartZoomState zoomToRange(
double start,
double end, {
String label = 'Zoom',
}) {
return _applyWindow(start, end, pushHistory: true, historyLabel: label);
}