[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IAxis.Visible

Visible Property

Visible

Gets or sets whether the axis is visible.

This property indicates whether the axis is displayed in the chart.

Declaration
bool Visible { get; set; }
Property Visible As Boolean
Examples
IChart chart = worksheet.Shapes.AddChart(ChartType.ColumnClustered, 20, 20, 300, 200).Chart;
IAxis axis = chart.Axes.Item(AxisType.Category, AxisGroup.Primary);
axis.Visible = false;
bool visible = axis.Visible;