Altering the Tick Frequency with AutoTicks
Posted by Admin - on 06 February 2019 02:55 PM
|
|
What are Axis Ticks and Deltas?In SciChart, the ticks are small marks around the chart on an axis. They also define the spacing of Gridlines, Axis Labels and Axis Bands.AxisBase.MajorDelta and AxisBase.MinorDelta are properties on the axis which define the delta, or difference between Major and Minor ticks. By default, the MajorDelta, MinorDelta (therefore the Tick spacing) are calculated automatically when AxisBase.AutoTicks = True. In this mode, SciChart will calculate the Major and Minor delta suitable to render the axis according to the VisibleRange and size of the axis. As you zoom and pan, SciChart will update the MajorDelta, MinorDelta of each axis, which affects the tick frequency. Further ReadingFor further information, please see our documentation Axis Ticks - MajorDelta, MinorDelta and AutoTicks. To learn about more advanced customization options, please see the documentation article Axis Ticks - TickProvider and DeltaCalculator API. | |
|