Click or drag to resize
INChartValueAxisDataSourceExtraTicks Method
Get array of extra ticks for discrete axis. Use this method to provide additional ticks for axis. This method is called after you call NChart.ExtendData(). The ticks from the array returned are _added_ to the axis' array of ticks, so axis will have more data. The maximal length of ticks array is determined by PointsHistoryLength property of NChart. Due to performance reasons you won't have access to the newly created ticks through the Ticks property of the NChartValueAxis.

Namespace:  NChart3D_UWP
Assembly:  NChart3D_UWP (in NChart3D_UWP.dll)
Syntax
IReadOnlyList<string> ExtraTicks(
	NChartValueAxis axis
)

Parameters

axis
Type: NChart3D_UWPNChartValueAxis
Axis to obtain the extra ticks for.

Return Value

Type: IReadOnlyListString
Array of extra ticks.
See Also