Search
Axis.Origin Property
See Also
 






Gets or sets the origin of this axis.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public Nullable<Double> Origin { get; set; }

Visual Basic  Copy Code

Public Property Origin As Nullable(Of Double)

 Property Value

An optional double value specifying the axis origin.

 Remarks

If set to a non-null value, the component renders an axis line inside the plot. Bars are drawn below that axis line if their values are smaller than the origin. For stacked bar charts, each bar length corresponds to the difference between bar's value and origin.

 See Also