Office Chart Object Model in PowerPoint and Word
With the release of Service Pack 2 (SP2) for Microsoft Office 2007, you can now programmatically access and manipulate charts using the VBA object model in Word 2007 SP2 and PowerPoint 2007 SP2. Prior to Service Pack 2, you could only access charts using the VBA object model in Excel 2007.
The chart object in Word 2007 SP2 and PowerPoint 2007 SP2 is drawn by the same shared Office drawing layer implementation used by Excel 2007, so if you’re familiar with the charting object model in Excel 2007, you can easily migrate Excel VBA code that manipulates charts into Word 2007 SP2 and PowerPoint 2007 SP2 VBA code.
In Excel 2007, a chart is represented by the ChartObject object. In Word 2007 SP2 and PowerPoint 2007 SP2, a chart is represented by a Chart object. The Chart object is contained by an InlineShape or Shape (in Word 2007 SP2) and a Shape (in PowerPoint 2007 SP2). In Word 2007 SP2, you can use the InlineShapes collection of the Document object to add new or access existing charts. In PowerPoint 2007 SP2, you can use the Shapes collection of the Slide object to add new or access existing charts. You can use the AddChart method for both collections, specifying the chart type and location within the document or slide, to add a new chart.
You can use the HasChart property to determine if an InlineShape object (InlineShape.HasChart in Word 2007 SP2) or Shape object (Shape.HasChart in PowerPoint 2007 SP2) contains a chart. If HasChart returns True, you can then use the Chart property to get a reference to a Chart object that represents the chart. At this point, the implementation is virtually identical in Excel 2007 SP2, Word 2007 SP2, and PowerPoint 2007 SP2, and VBA code can be transferred across all three programs in most cases.
For example, the following VBA code adds a new 2-D stacked column chart to the active worksheet in Excel and sets the chart’s source data to the range A1:C3 from the Sheet1 worksheet.
Excel 2007 SP2
1: Sub AddChart_Excel()
2: Dim objShape As Shape
3:
4: ' Create a chart and return a Shape object reference.
5: ' The Shape object reference contains the chart.
6: Set objShape = ActiveSheet.Shapes.AddChart(XlChartType.xlColumnStacked100)
7:
8: ' Ensure the Shape object contains a chart. If so,
9: ' set the source data for the chart to the range A1:C3.
10: If objShape.HasChart Then
11: objShape.Chart.SetSourceData Source:=Range("'Sheet1'!$A$1:$C$3")
12: End If
13: End Sub
By comparison, the following VBA code adds a new 2-D stacked column chart to the active document in Word 2007 and sets the chart’s source data to the range A1:C3 from the chart data associated with the chart.
Word 2007 SP2
1: Sub AddChart_Word()
2: Dim objShape As InlineShape
3:
4: ' Create a chart and return a Shape object reference.
5: ' The Shape object reference contains the chart.
6: Set objShape = ActiveDocument.InlineShapes.AddChart(XlChartType.xlColumnStacked100)
7:
8: ' Ensure the Shape object contains a chart. If so,
9: ' set the source data for the chart to the range A1:C3.
10: If objShape.HasChart Then
11: objShape.Chart.SetSourceData Source:="'Sheet1'!$A$1:$C$3"
12: End If
13: End Sub
Key Differences Between the Chart object in Word 2007 SP2/PowerPoint 2007 SP2 and ChartObject object in Excel 2007 SP2
The Chart object in Word 2007 SP2 and PowerPoint 2007 SP2 does have a few differences from the Excel 2007 SP2 implementation.
- Programmatically creating or manipulating a ChartData object in Word 2007 SP2 or PowerPoint 2007 SP2 will cause Excel 2007 SP2 to run.
- Chart properties and methods for manipulating the chart sheet aren’t implemented.
The concept of a chart sheet is specific to Excel 2007. Chart sheets aren’t used in Word 2007 or PowerPoint 2007, so methods and properties used to reference or manipulate a chart sheet have been disabled for those applications. - Properties and methods that, in Excel 2007 SP2 normally take a Range object reference now take a range address in Word 2007 SP2/PowerPoint 2007 SP2.
The Range object in Word 2007 SP2 and PowerPoint 2007 SP2 is different than the Range object in Excel 2007 SP2. To prevent confusion, the charting object model in Word 2007 SP2 and PowerPoint 2007 SP2 accepts range address strings, such as "='Sheet1'!$A$1:$D$5", in those properties and methods (such as the SetSourceData method of the Chart object) that accept Range objects in Excel 2007 SP2. - A new object, ChartData, has been added to the VBA object models for Word 2007 SP2 and PowerPoint 2007 SP2 to provide access to the underlying linked or embedded data for a chart.
Each chart has, associated with it, the data used to draw the chart in Word 2007 SP2 or PowerPoint 2007 SP2. The chart data can either be linked from an external Excel workbook, or embedded as part of the chart itself. The ChartData object encapsulates access to the data for a given chart in Word 2007 SP2 or PowerPoint 2007 SP2. For example, the following VBA code displays, then minimizes, the chart data for each chart contained by the active document in Word 2007 SP2:
1: Sub ShowWorkbook_Word()
2: Dim objShape As InlineShape
3:
4: ' Iterates each inline shape in the active document.
5: ' If the inline shape contains a chart, then display the
6: ' data associated with that chart and minimize the application
7: ' used to display the data.
8: For Each objShape In ActiveDocument.InlineShapes
9: If objShape.HasChart Then
10:
11: ' Activate the topmost window of the application used to
12: ' display the data for the chart.
13: objShape.Chart.ChartData.Activate
14:
15: ' Minimize the application used to display the data for
16: ' the chart.
17: objShape.Chart.ChartData.Workbook.Application.WindowState = -4140
18: End If
19: Next
20: End Sub
Comments
Anonymous
April 29, 2009
The Office 2007 SP2 is available now for download: http://www.microsoft.com/downloads/details.aspx?familyid=B444BF18-79EA-46C6-8A81-9DB49B4AB6E5&displaylang=enAnonymous
April 30, 2009
Hi, Thanks for this update. However, I am still unable to find how can i paste a chart from Excel to Powerpoint as an entire workbook. I can paste the linked chart although. I remember, Microsoft had committed that functionality will be provided in SP2, but I cannot find it. Any help :( Thanks, VikasAnonymous
May 11, 2009
Thanks for your examples above. Are there any updated Primary Interop Assemblies for using the new Object Models in VSTO? The old PIAs do not recognize the new Chart object under Powerpoint.Shape Thanks!Anonymous
June 03, 2009
@Sam Russo:- the solution to manipulating the charts inside VSTO is to delete all of your interop references than re-add these references from the GAC. When Visual Studio set's up a VSTO project it uses references from its own interops directory and these aren't patched by the general office 2007 sp2 patch.Anonymous
February 06, 2010
Hi; Thanks for the info. A couple of questions.
- How do I get DocProperties.Description (<wp:docPr descr="my tag">) from the InlineShape/Chart?
- Is there a way to give it data that is not from an Excel file? thanks - dave