ChartSeries.ComboChartType 属性 (Access)

返回或设置指定系列的图表类型。 AcChartType 类型,可读写。

仅当父 Chart 对象的 ChartType 设置为 acChartCombo 时,此设置才适用。

语法

表达式ComboChartType

表达 一个代表 ChartSeries 对象的变量。

示例

此示例检查图表是否为组合图,如果是,请将第一个系列的 ComboChartType 设置为 acChartLine

With myChart
 If .ChartType = acChartCombo Then
  .ChartSeriesCollection.Item(0).ComboChartType = acChartLine
 End If
End With

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。