Visible property as it applies to the Application object.

Determines whether the object is visible. Read/write Boolean.

expression.VisibleexpressionRequired. An expression that returns an Applicationobject.

Visible property as it applies to the ChartFillFormat object.

Determines whether the application is visible. Read/write .

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse
msoTriStateMixed
msoTriStateToggle
msoTrue The object is visible.

expression.VisibleexpressionRequired. An expression that returns a ChartFillFormatobject.

Example

As it applies to the ChartFillFormat object.

This example formats the chart's fill with a preset gradient and then makes the fill visible.

With myChart.ChartArea.Fill .Visible = msoTrue .PresetGradient msoGradientDiagonalDown, _ 3, msoGradientBrass End With