panTo method

ChartZoomState panTo(
  1. double frac
)

Pan so that frac is at the left edge of the viewport.

Implementation

ChartZoomState panTo(double frac) {
  return _applyWindow(frac, frac + windowSize);
}