INChartValueAxisDataSourceTicks Method |
Get array of ticks for the discrete axis. You should provide it if min and max are not implemented. If they are
implemented the array of ticks is ignored. If neither min and max nor the array of ticks are provided axis is
assumed to be continuous and both min and max are calculated automatically based on the values for the series.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax IReadOnlyList<string> Ticks(
NChartValueAxis axis
)
Function Ticks (
axis As NChartValueAxis
) As IReadOnlyList(Of String)
IReadOnlyList<String^>^ Ticks(
[InAttribute] NChartValueAxis^ axis
)
Parameters
- axis
- Type: NChart3D_UWPNChartValueAxis
Axis to get an array of ticks for.
Return Value
Type:
IReadOnlyListStringAn array of strings that represent the ticks. It may be null that is equivalent to the absence of implementation.
See Also