<img alt="" src="https://secure.leadforensics.com/150446.png " style="display:none;">
Go to top icon

Charts in Excel 2010 Using OOXML & C#

Vitthal Shinde Dec 10, 2012

Excel 2010 Open Office XML OpenXML C# OOXML XML Microsoft .Net Technology

Open Office XML (also known as OOXML or OpenXML) is a XML based file format developed by Microsoft for representing office documents. An OOXML file is stored in zipped, XML files.

Spreadsheet documents in OOXML mainly contain following parts,

xl

worksheets

_rels

sheet1.xml.rels

sheet1.xml

andxmls depending on sheets .

theme

theme1.xml

drawings

_rels

drawing1.xml.rels

drawing1.xml

charts

chart1.xml

_rels

workbook.xml.rels

workbook.xml

styles.xml

sharedStrings.xml

docProps

_rels

[Content_Types].xml

We are going to talk about drawings and the chart parts in this blog.

Inserting chart in Excel

We will go through various chart objects in the following sections,

  1. DrawingsPart

    To insert any type of drawing objects in office documents DrawingsPart is base part in which we append child elements.

    The drawing1.xml looks like,

    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <xdr:wsDr xmlns:xdr="http://schemas.openxmlformats.org/drawingml/2006/spreadsheetDrawing"xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main">
    <xdr:twoCellAnchor>
    <xdr:from>
    <xdr:col>4</xdr:col>
    <xdr:colOff>0</xdr:colOff>
    <xdr:row>5</xdr:row>
    <xdr:rowOff>0</xdr:rowOff>
    </xdr:from>
    <xdr:to>
    <xdr:col>8</xdr:col>
    <xdr:colOff>0</xdr:colOff>
    <xdr:row>13</xdr:row>
    <xdr:rowOff>0</xdr:rowOff>
    </xdr:to>
    <xdr:graphicFrame macro="">
    <xdr:nvGraphicFramePr>
    <xdr:cNvPrid="1067" name="Chart2" />
    <xdr:cNvGraphicFramePr/>
    </xdr:nvGraphicFramePr>
    <xdr:xfrm>
    <a:offx="0" y="0" />
    <a:extcx="0" cy="0" />
    </xdr:xfrm>
    <a:graphic>
    <a:graphicDatauri="http://schemas.openxmlformats.org/drawingml/2006/chart">
    <c:chartxmlns:c="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relatioships" r:id="rId1" />
    </a:graphicData>
    </a:graphic>
    </xdr:graphicFrame>
    <xdr:clientData/>
    </xdr:twoCellAnchor>
    </xdr:wsDr>
    

    Key parts in above XML are,

    Drawing part is a common object in all sheets of spreadsheet. It can be added in worksheet part as below,

    DrawingsPartdrawingsPart = null;
    // Add a new drawing to the worksheet.
    if (worksheetPart.DrawingsPart == null)
    {
    drawingsPart = worksheetPart.AddNewPart<DrawingsPart>();
    worksheetPart.Worksheet.Append(newDocumentFormat.OpenXml.Spreadsheet.Drawing() { Id = worksheetPart.GetIdOfPart(drawingsPart) });
    worksheetPart.Worksheet.Save();
    }
    else
    {
    drawingsPart = worksheetPart.DrawingsPart;
    }
    
    1. TwoCellAnchor:

      TwoCellAnchor is used to set chart position in worksheet. It can be set by using the following two classes,

      1. FromMarker
      2. FromMarker is used to specify from position of chart using From excel column and From excel row.

      3. ToMarker
      4. ToMarker is used to specify position of chart using To excel column and To excel row.

        Following code specifies position of charts,

        // Position the chart on the worksheet using a TwoCellAnchor object.
        if (drawingsPart.WorksheetDrawing == null)
        drawingsPart.WorksheetDrawing = newWorksheetDrawing();
        
        TwoCellAnchortwoCellAnchor = drawingsPart.WorksheetDrawing.AppendChild &lsaquo;TwoCellAnchor &rsaquo;(newTwoCellAnchor());
        twoCellAnchor.Append
        (
        newDocumentFormat.OpenXml.Drawing.Spreadsheet.FromMarker
        (
        newColumnId("5"),
        newColumnOffset("0"),
        newRowId("5"),
        newRowOffset("0")
        )
        );
        twoCellAnchor.Append
        (
        newDocumentFormat.OpenXml.Drawing.Spreadsheet.ToMarker
        (
        newColumnId("10"),
        newColumnOffset("0"),
        newRowId("15"),
        newRowOffset("0")
        )
        );
        
    2. GraphicFrame:
    3. Frame of the graph can be added using GraphicFrame. Following code adds frame of the chart,

      // Append a GraphicFrame to the TwoCellAnchor object.
      DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFramegraphicFrame = twoCellAnchor.AppendChild &lsaquo;DocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame &rsaquo;(newDocumentFormat.OpenXml.Drawing.Spreadsheet.GraphicFrame());
      graphicFrame.Macro = "";
      
      graphicFrame.Append
                  (
      new DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameProperties
                      (
      new DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualDrawingProperties() { Id = 2u, Name = "Chart2";},
      new DocumentFormat.OpenXml.Drawing.Spreadsheet.NonVisualGraphicFrameDrawingProperties()
                      )
                  );
      graphicFrame.Append(newTransform(newDocumentFormat.OpenXml.Drawing.Offset() { X = 0L, Y = 0L }, newDocumentFormat.OpenXml.Drawing.Extents() { Cx = 0L, Cy = 0L }));
      
      graphicFrame.Append(newDocumentFormat.OpenXml.Drawing.Graphic(newDocumentFormat.OpenXml.Drawing.GraphicData(newChartReference() { Id = drawingsPart.GetIdOfPart(chartPart) }) { Uri = "http://schemas.openxmlformats.org/drawingml/2006/chart" }));
      
      twoCellAnchor.Append(newClientData());
      
      // Save the WorksheetDrawing object.
      drawingsPart.WorksheetDrawing.Save();
      
  2. ChartPart

    We can create new Chart using ChartPart class. Following code creates new chart and sets it’s editing culture,

    // Add a new chart and set the chart language to English-US.
    ChartPartchartPart = drawingsPart.AddNewPart<ChartPart>();
    chartPart.ChartSpace = newChartSpace();
    chartPart.ChartSpace.Append(newEditingLanguage() { Val = newStringValue("en-US") });
    

    Chart can be created using,

    DocumentFormat.OpenXml.Drawing.Charts.Chart chart =
    chartPart.ChartSpace.AppendChild &lsaquo;DocumentFormat.OpenXml.Drawing.Charts.Chart&rsaquo;(newDocumentFormat.OpenXml.Drawing.Charts.Chart());
    
    chart.AppendChild<AutoTitleDeleted>(newAutoTitleDeleted() { Val = BooleanValue.FromBoolean(false) });
    
    chart.Append(newPlotVisibleOnly() { Val = newBooleanValue(true) });
    chart.Append(newDisplayBlanksAs() { Val = DisplayBlanksAsValues.Gap });
    

    Once Chart is created, Chart plot area can be created using,

    PlotAreaplotArea = chart.AppendChild &lsaquo;PlotArea&rsaquo;(newPlotArea());
    

    Chart plot area is main chart object which is used to create objects like Layout, BarChart, Chart axes.

    1. Barchart

      In this blog we are going to create Bar chart. Bar chart, chart series and other properties of bar chart that can be created using,

      Layoutlayout = plotArea.AppendChild<Layout>(newLayout());
      BarChartbarChart = plotArea.AppendChild<BarChart>
       (
      newBarChart
            (
      newBarDirection() { Val = newEnumValue &lsaquo;BarDirectionValues &rsaquo;(BarDirectionValues.Bar) },
      newBarGrouping() { Val = newEnumValue &lsaquo;BarGroupingValues &rsaquo;(BarGroupingValues.Clustered) }
      )
      );
      

      And add chart axis as below,

      barChart.Append(newAxisId() { Val = newUInt32Value(48650112u) });
      barChart.Append(newAxisId() { Val = newUInt32Value(48672768u) });
      

      Bar Chart has the following part,

      1. BarChartSeries
      2. Chart series is created using the following code,

        BarChartSeriesbarChartSeries = barChart.AppendChild<BarChartSeries>
        (
        newBarChartSeries
        (
        newIndex() { Val = newUInt32Value(0u) },
        newOrder() { Val = newUInt32Value(0u) },
        newSeriesText(newNumericValue() { Text = chartDetails.ChartTitle })
        )
        );
        
      3. DataPoint
      4. Data points are nothing but bars in Bar charts. These bars can be formatted using

        DataPointdpFirstName  =barChartSeries.AppendChild &lsaquo;DataPoint&rsaquo;(newDataPoint());
        dpFirstName.Index = newIndex();
        dpFirstName.Index.Val = 0u;
        dpFirstName.InvertIfNegative = newInvertIfNegative() { Val = BooleanValue.FromBoolean(true) };
        dpFirstName.Bubble3D = newBubble3D() { Val = BooleanValue.FromBoolean(false) };
        
        DocumentFormat.OpenXml.Drawing.Charts.ShapePropertiesspDataPoint = dpFirstName.AppendChild<DocumentFormat.OpenXml.Drawing.Charts.ShapeProperties>
         (
        	newDocumentFormat.OpenXml.Drawing.Charts.ShapeProperties()
        );
        spDataPoint.Append(newDocumentFormat.OpenXml.Drawing.SolidFill() { RgbColorModelHex = newDocumentFormat.OpenXml.Drawing.RgbColorModelHex() { Val = newHexBinaryValue("FF00FF") } });
        

        Color of each bar can be changed using the above code. Index objectofdata pointis referred for each bar in bar chart starting from 0.

      5. CategoryAxisData
      6. Category axis values are mentioned using following code,

        CategoryAxisDataobjCAD = barChartSeries.AppendChild &lsaquo;CategoryAxisData &rsaquo;(newCategoryAxisData());
        
        StringReferencestrRef = newStringReference();
        
        strRef.Formula = newDocumentFormat.OpenXml.Drawing.Charts.Formula("Sheet1!$B$2:$B$5");
        strRef.StringCache = newStringCache();
        strRef.StringCache.PointCount = newPointCount() { Val = Convert.ToUInt32(data.Keys.Count) };
        
        uintkeyCnt = 0;
        
        foreach (string key indata.Keys)
        {
        strRef.StringCache.AppendChild &lsaquo;NumericPoint &rsaquo;(newNumericPoint() { Index = keyCnt, NumericValue = newNumericValue(key) });
        }
        
        objCAD.AppendChild<StringReference>(strRef);
        

        Here data is input data and its object type isDictionary.

      7. Values
      8. Series values are mentioned using the following code,

        DocumentFormat.OpenXml.Drawing.Charts.Values values = barChartSeries.AppendChild &lsaquo;DocumentFormat.OpenXml.Drawing.Charts.Values &rsaquo;(newDocumentFormat.OpenXml.Drawing.Charts.Values());
        
        NumberReferencenumRef = newNumberReference();
        
        numRef.Formula = newDocumentFormat.OpenXml.Drawing.Charts.Formula("Sheet1!$C$2:$C$5");
        numRef.NumberingCache = newNumberingCache();
        numRef.NumberingCache.PointCount = newPointCount() { Val = Convert.ToUInt32(data.Keys.Count) };
        
        uintkeyCnt = 0;
        
        foreach (string key indata.Keys)
        {
        numRef.NumberingCache.AppendChild<NumericPoint>(newNumericPoint() { Index = keyCnt, NumericValue = newNumericValue(data[key].ToString()) });
        keyCnt++;
        }
        values.AppendChild<NumberReference>(numRef);
        

        Here data is input data and its object type isDictionary.

    2. CategoryAxis
    3. Category axis is used to specify values like axis id, scaling, axis position, crossing axis and so on.

      Following code creates category axis

      CategoryAxiscatAx = plotArea.AppendChild<CategoryAxis>
      (
      newCategoryAxis
            (
      		newAxisId() { Val = newUInt32Value(48650112u) },
      newScaling(newOrientation() { Val = newEnumValue<DocumentFormat.OpenXml.Drawing.Charts.OrientationValues>(DocumentFormat.OpenXml.Drawing.Charts.OrientationValues.MinMax) }),
      newAxisPosition() { Val = newEnumValue<AxisPositionValues>(AxisPositionValues.Left) },
      newDelete() { Val = newBooleanValue(false) },
      newTickLabelPosition() { Val = newEnumValue<TickLabelPositionValues>(TickLabelPositionValues.Low) },
      newCrossingAxis() { Val = newUInt32Value(48672768U) },
      newCrosses() { Val = newEnumValue<CrossesValues>(CrossesValues.AutoZero) },
      newAutoLabeled() { Val = newBooleanValue(true) },
      newLabelAlignment() { Val = newEnumValue<LabelAlignmentValues>(LabelAlignmentValues.Center) },
      newLabelOffset() { Val = newUInt16Value((ushort)100) },
      newNoMultiLevelLabels() { Val = newBooleanValue(false) }
      )
      );
      
    4. ValueAxis
    5. Value axis is same as Category axis, it is used to specify values like axis id, scaling, axis position, crossing axis and so on.

      Following code creates value axis,

      // Add the Value Axis.
      ValueAxisvalAx = plotArea.AppendChild &lsaquo;ValueAxis&rsaquo;
      (
      newValueAxis
      (
      newAxisId() { Val = newUInt32Value(48672768u) },
      newScaling(newOrientation() { Val = newEnumValue &lsaquo;DocumentFormat.OpenXml.Drawing.Charts.OrientationValues &rsaquo;(DocumentFormat.OpenXml.Drawing.Charts.OrientationValues.MinMax) }, newMaxAxisValue() { Val = newDocumentFormat.OpenXml.DoubleValue(Convert.ToDouble(100)) }),
      newAxisPosition() { Val = newEnumValue<AxisPositionValues>(AxisPositionValues.Left) },
      newMajorGridlines(),
      newDelete() { Val = newBooleanValue(false) },
      newDocumentFormat.OpenXml.Drawing.Charts.NumberingFormat() { FormatCode = newStringValue("General"), SourceLinked = newBooleanValue(true) },
      newTickLabelPosition() { Val = newEnumValue &lsaquo;TickLabelPositionValues&rsaquo;(TickLabelPositionValues.NextTo) },
      newCrossingAxis() { Val = newUInt32Value(48650112U) },
      newCrosses() { Val = newEnumValue &lsaquo;CrossesValues &rsaquo;(CrossesValues.AutoZero) },
      newCrossBetween() { Val = newEnumValue &lsaquo;CrossBetweenValues &rsaquo;(CrossBetweenValues.Between) }
      )
      );
      

    Chart XML, chart1.xml, looks like,

  3. Final Details
  4. A sample bar chart generated using the above code is shown below

Click here to download Final code of inserting bar charts in Excel using OOXML and C#.

Similar Blog

e-Zest is a leading digital innovation partner for enterprises and technology companies that utilizes emerging technologies for creating engaging customers experiences. Being a customer-focused and technology-driven company, it always helps clients in crafting holistic business value for their software development efforts. It offers software development and consulting services for cloud computing, enterprise mobility, big data and analytics, user experience and digital commerce.