NChartValueAxisAlwaysShowZero Property |
Flag that determines whether zero is always on the axis. This flag makes sense if MinValue and MaxValue are both
less or greater than zero and are beautified according to the data source. In this case if this flag is false it
may happen that no zero will be on the axis (for example if MinValue = 11.5 and MaxValue = 19 the axis will
probably start with 10 and end with 20 having 4 steps). With this flag set to true zero will always be on the axis
so even with MinValue = 11.5 and MaxValue = 19 the axis will start with 0 and end with 20 having probably 5 steps
or so. The default value is false.
Namespace:
NChart3D_UWP
Assembly:
NChart3D_UWP (in NChart3D_UWP.dll)
Syntax public bool AlwaysShowZero { get; set; }
Public Property AlwaysShowZero As Boolean
Get
Set
public:
virtual property bool AlwaysShowZero {
bool get () sealed;
void set (bool value) sealed;
}
Property Value
Type:
BooleanSee Also