public interface IViewportManagerBase
extends com.scichart.core.framework.IAttachable
Modifier and Type | Method and Description |
---|---|
void |
invalidateParentSurface()
May be called to trigger a redraw on the parent surface
|
void |
onVisibleRangeChanged(IAxisCore axis,
com.scichart.data.model.IRange oldRange,
com.scichart.data.model.IRange newRange,
boolean isAnimating)
Called when the VisibleRange changes for an axis.
|
void |
tryPerformAutoRange(IAxisCore axis)
Called during render to perform autoranging.
|
void |
updateXAxis(IAxisCore xAxis)
Called during render to update XAxis VisibleRange.
|
void |
updateYAxis(IAxisCore yAxis)
Called during render to update YAxis VisibleRange.
|
void onVisibleRangeChanged(IAxisCore axis, com.scichart.data.model.IRange oldRange, com.scichart.data.model.IRange newRange, boolean isAnimating)
axis
- THe axis instanceoldRange
- The old VisibleRangenewRange
- The new VisibleRangeisAnimating
- Flag indicating whether the VisibleRange is animatingvoid updateXAxis(IAxisCore xAxis)
xAxis
- The XAxis to updatevoid updateYAxis(IAxisCore yAxis)
yAxis
- The YAxis to updatevoid tryPerformAutoRange(IAxisCore axis)
axis
- The IAxis
instance to perform autorange onvoid invalidateParentSurface()