AxisMinorUnitScale Property |
Represents the major unit scale for the category axis.
Namespace:
Aspose.Cells.Charts
Assembly:
Aspose.Cells (in Aspose.Cells.dll) Version: 21.1.0.0 (21.1)
Syntaxpublic TimeUnit MinorUnitScale { get; set; }
Public Property MinorUnitScale As TimeUnit
Get
Set
public:
property TimeUnit MinorUnitScale {
TimeUnit get ();
void set (TimeUnit value);
}
member MinorUnitScale : TimeUnit with get, set
Property Value
Type:
TimeUnit
Examples[C#]
chart.CategoryAxis.CategoryType = CategoryType.TimeScale;
chart.CategoryAxis.MinorUnitScale = TimeUnit.Months;
chart.CategoryAxis.MinorUnit = 2;
[Visual Basic]
chart.CategoryAxis.CategoryType = CategoryType.TimeScale
chart.CategoryAxis.MinorUnitScale = TimeUnit.Months
chart.CategoryAxis.MinorUnit = 2
See Also