Chart.ChartWizard (Excel)

Modifies the properties of the given chart. You can use this method to quickly format a chart without setting all the individual properties. This method is noninteractive, and it changes only the specified properties.

If Source is omitted and either the selection isn't an embedded chart on the active worksheet or the active sheet isn't an existing chart, this method fails and an error occurs.

ChartWizard (Source, Gallery, Format, PlotBy, CategoryLabels, SeriesLabels, HasLegend, Title, CategoryTitle, ValueTitle, ExtraTitle)


Charts("Chart1").ChartWizard _ 
 Gallery:=xlLine, _ 
 HasLegend:=True, CategoryTitle:="Year", ValueTitle:="Sales"

Arguments

Optional arguments

The following arguments are optional

Source (Range) - The range that contains the source data for the new chart. If this argument is omitted, Microsoft Excel edits the active chart sheet or the selected chart on the active worksheet.

Gallery (XlChartType) - One of the constants of XlChartType specifying the chart type.

Here you can find possible values for XlChartType

Format (Long) - The option number for the built-in autoformats. Can be a number from 1 through 10, depending on the gallery type. If this argument is omitted, Excel chooses a default value based on the gallery type and data source.

PlotBy (XlRowCol) - Specifies whether the data for each series is in rows or columns. Can be one of the following XlRowCol constants: xlRows or xlColumns.

Possible return values are xlColumns - Data series is in a row, xlRows - Data series is in a column.

CategoryLabels (Integer) - An integer specifying the number of rows or columns within the source range that contain category labels. Legal values are from 0 (zero) through one less than the maximum number of the corresponding categories or series.

SeriesLabels (Integer) - An integer specifying the number of rows or columns within the source range that contain series labels. Legal values are from 0 (zero) through one less than the maximum number of the corresponding categories or series.

HasLegend (Boolean) - True to include a legend.

Title (String) - The chart title text.

CategoryTitle (String) - The category axis title text.

ValueTitle (String) - The value axis title text.

ExtraTitle (String) - The series axis title for 3D charts or the second value axis title for 2D charts.