public void SetCoordinateArea(double left, double right, double top, double bottom) { XAxisMapper.SetRange2(left, right); YAxisMapper.SetRange2(top, bottom); if (!isInitializing) { MapperStateChanged?.Invoke(this); } }
public void SetCoordinateXRange(double xLeft, double xRight) => XAxisMapper.SetRange2(xLeft, xRight);