Click here to Skip to main content
15,887,596 members
Articles / Productivity Apps and Services / Microsoft Office

Utility to Generate Word Documents from Templates Using Visual Studio 2010 and Open XML 2.0 SDK - Part 4

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
24 Jan 2012CPOL1 min read 19.2K   10   1
Utility to Generate Word Documents from Templates Using Visual Studio 2010 and Open XML 2.0 SDK - Part 4

This is the fourth part of this series. The code is available for download at http://worddocgenerator.codeplex.com/.

In Part 1, I discussed about:

  • Document generation using Content Controls and Open XML 2.0 SDK
  • Creating Word templates
  • Implementation and Samples

In Part 2, I discussed about:

  • List of functionalities that can be achieved using the utility/source code
  • Description regarding Samples provided with utility
  • New samples added in this update

In Part 3, I discussed about:

  • Document-level customizations for Word 2007 and Word 2010
  • One of the ways to “Refresh the document from within the Word (e.g. right click on document and click Refresh) using document-level customizations for Word 2007 and Word 2010“

This post will focus on Charts. I’ve added the samples to generate/refresh charts using OpenXML. The screenshot below displays the template having Scatter chart and Line chart and the document generated out of this template using this utility.

Word 2010 Template having Charts –> Generated Documents with Charts Refreshed

image

image


Code Changes

Class diagram for Chart specific classes is displayed below:

image

SampleDocumentWithTableAndChartsGenerator” is the sample that shows how to refresh template having Scatter and Line charts. The code snippets are displayed below:

  • RefreshCharts” method is added to DocumentGenerator class:
    C#
    /// <summary>
    /// Refreshes the charts.
    /// </summary>
    /// <param name="mainDocumentPart">The main document part.</param>
    protected virtual void RefreshCharts(MainDocumentPart mainDocumentPart)
    {
     
    }
  • SampleDocumentWithTableAndChartsGenerator” class overrides “RefreshCharts” method:
    C#
    /// <summary>
    /// Refreshes the charts.
    /// </summary>
    /// <param name="mainDocumentPart">The main document part.</param>
    protected override void RefreshCharts(MainDocumentPart mainDocumentPart)
    {
            if (mainDocumentPart != null)
        {
                foreach (ChartPart chartPart in mainDocumentPart.ChartParts)
            {
                    Chart chart = chartPart.ChartSpace.Elements<Chart>().FirstOrDefault();
    
                    if (chart != null)
                {
                    DocumentFormat.OpenXml.Drawing.Charts.ScatterChart scatterChart = 
                    chart.Descendants<DocumentFormat.OpenXml.Drawing.Charts.ScatterChart>
                    ().FirstOrDefault();
                    DocumentFormat.OpenXml.Drawing.Charts.Line3DChart lineChart = 
                    chart.Descendants<DocumentFormat.OpenXml.Drawing.Charts.Line3DChart>
                    ().FirstOrDefault();
         
                    if (scatterChart != null)
                        {                            
                        ScatterChartEx chartEx = new ScatterChartEx(chartPart, this.scatterChartData);
                            chartEx.Refresh();
                    }
         
                    if (lineChart != null)
                        {                            
                        Line3DChartEx chartEx = new Line3DChartEx(chartPart, this.lineChartData);
                            chartEx.Refresh();
                    }
                    }
     
                    chartPart.ChartSpace.Save();
            }
            }
    }
  • Refresh method is defined in ChartEx<T>:
    C#
    /// <summary>
    /// Refreshes this instance.
    /// </summary>
    public void Refresh()
        {
        ChartData chartData = this.GetChartData();
         
        if (chartData != null && chartData.IsValid())
            {
            string sheetName = this.UpdateEmbeddedObject();
    
            Chart chart = chartPart.ChartSpace.Elements<Chart>().FirstOrDefault();
         
            if (chart != null)
                {
                this.UpdateChart(chart.Descendants<T>().FirstOrDefault(), sheetName);
                }              
        }
    
        }

For complete code, download the source code.

Summary

Please provide feedback/comments and I’ll try to incorporate most of them in new releases.

This article was originally posted at http://www.atulverma.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
Atul works at Microsoft as a .NET consultant. As a consultant his job is to design, develop and deploy enterprise level secure and scalable solutions using Microsoft Technologies.

His technical expertise include .NET Framework(4.0, 3.5, 3.0), WPF, WCF, SharePoint 2010, ASP.net, AJAX, Web Services, Enterprise Applications, SQL Server 2008, Open Xml, MS Word Automation.

Follow him on twitter @verma_atul

He blogs at
http://www.atulverma.com
http://blogs.msdn.com/b/atverma

Comments and Discussions

 
GeneralModify and update an embedded chart in a word 2010 document Pin
Benone IONESCU8-Jul-12 22:08
Benone IONESCU8-Jul-12 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.