Chart.SetElement method (Excel)

Sets chart elements on a chart. Read/write MsoChartElementType.

Syntax

expression.SetElement (Element)

expression A variable that represents a Chart object.

Parameters

Name Required/Optional Data type Description
Element Required MsoChartElementType Specifies the chart element type.

Return value

Nothing

Remarks

For charts, the following commands in the Layout tab correspond to the SetElement method:

  • Everything in the Labels group.

  • Everything in the Axes group.

  • Everything in the Analysis group.

  • PlotArea, Chart Wall, and Chart Floor buttons.

MsoChartElementType is an enumeration of constants that refer to all of the above commands.

Example

This example sets chart elements by using the various constant values to an active chart.

ActiveChart.Axes(xlValue).MajorGridlines.Select 
 ActiveChart.SetElement (msoElementChartTitleCenteredOverlay) 
 ActiveChart.SetElement (msoElementPrimaryCategoryGridLinesMinor) 
 ActiveChart.Walls.Select 
 Application.CommandBars("Clip Art").Visible = False 
 ActiveChart.SetElement (msoElementChartFloorShow)

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.