ChartSeries.ComboChartType property (Access)
Returns or sets the chart type for the specified series. Read/write AcChartType.
This setting is only applicable when the ChartType of the parent Chart object is set to acChartCombo.
Syntax
expression.ComboChartType
expression A variable that represents a ChartSeries object.
Example
This example checks if a chart is a combo chart, and if so, sets the ComboChartType of the first series to acChartLine.
With myChart
If .ChartType = acChartCombo Then
.ChartSeriesCollection.Item(0).ComboChartType = acChartLine
End If
End With
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.