Word) (图表对象

代表文档中的图表。

备注

示例部分介绍的下列属性和用于返回 Chart 对象的方法︰

示例

InlineShapes 集合中包含的文档中包含图表,每个内嵌形状的对象。 使用 InlineShapes (索引) ,其中 Index 是内联形状的索引号,可返回单个 InlineShape 对象。 使用 HasChart 属性来确定 InlineShape 的对象是否表示一个图表。 HasChart 属性设置为 True 时,如果使用 图表 属性可返回的 图表 对象。

Type 属性还可用于确定 InlineShape 的对象是否表示一个图表。 如果 类型 属性设置为 WdInlineShapeChart ,内嵌形状表示的图表。

以下示例验证活动文档中的第一个内嵌形状是否代表图表。 如果它代表图表,该示例将更改图表中第一个系列的前景色。

With ActiveDocument.InlineShapes(1) 
 If .HasChart Then 
 .Chart.SeriesCollection(1).Format.Fill.ForeColor.RGB = rgbRed 
 End If 
End With

以下示例创建一个新的 3D 柱形图并将其添加到活动文档中。

ActiveDocument.InlineShapes.AddChart Type:=xl3DColumn 

方法

名称
ApplyChartTemplate
ApplyDataLabels
ApplyLayout
Axes
ChartWizard
ClearToMatchColorStyle
ClearToMatchStyle
Copy
CopyPicture
删除
Export
FullSeriesCollection
GetChartElement
Paste
Refresh
SaveChartTemplate
Select
SeriesCollection
SetBackgroundPicture
SetDefaultChart
SetElement
SetSourceData

属性

名称
Application
AutoScaling
BackWall
BarShape
CategoryLabelLevel
ChartArea
ChartColor
ChartData
ChartGroups
ChartStyle
ChartTitle
ChartType
Creator
DataTable
DepthPercent
DisplayBlanksAs
Elevation
Floor
GapDepth
HasAxis
HasDataTable
HasLegend
HasTitle
HeightPercent
Legend
Parent
Perspective
PivotLayout
PlotArea
PlotBy
PlotVisibleOnly
RightAngleAxes
Rotation
SeriesNameLevel
Shapes
ShowAllFieldButtons
ShowAxisFieldButtons
ShowDataLabelsOverMaximum
ShowLegendFieldButtons
ShowReportFilterFieldButtons
ShowValueFieldButtons
SideWall
Walls

另请参阅

Word 对象模型参考

支持和反馈

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