[]
Gets or sets whether Microsoft Excel calculates minor units for the value axis.
This property is true if the minor unit for the value axis is determined automatically by Excel.
bool MinorUnitIsAuto { get; set; }
Property MinorUnitIsAuto As Boolean
worksheet.Range["A1:B3"].Value = new object[,] {
{"Name", "Value"},
{"A", 10},
{"B", 20}
};
IShape shape = worksheet.Shapes.AddChart(ChartType.ColumnClustered, worksheet.Range["A1:B3"]);
IAxis axis = shape.Chart.Axes.Item(AxisType.Value);
bool autoMinorUnit = axis.MinorUnitIsAuto;