INChartValueAxisDataSourceMax Method |
Get the maximal value for the axis. If there is no implementation the axis is assumed to be discrete and you should
provide an array of ticks. If neither min and max nor an array of ticks are provided the 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 Nullable<double> Max(
NChartValueAxis axis
)
Function Max (
axis As NChartValueAxis
) As Nullable(Of Double)
Nullable<double>^ Max(
[InAttribute] NChartValueAxis^ axis
)
Parameters
- axis
- Type: NChart3D_UWPNChartValueAxis
Axis to get the maximal value for.
Return Value
Type:
NullableDoubleThe maximal value for the axis. It may be null that is equivalent to the absence of implementation.
See Also