Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
385 changes: 315 additions & 70 deletions OpenXmlFormats/Drawing/BaseTypes.cs

Large diffs are not rendered by default.

68 changes: 68 additions & 0 deletions OpenXmlFormats/Drawing/Chart/BarChart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,37 @@ public CT_BarDir AddNewBarDir()
this.barDirField = new CT_BarDir();
return this.barDirField;
}

public int SizeOfAxIdArray()
{
return axIdField.Count;
}

public bool IsSetVaryColors()
{
return this.varyColorsField != null;
}

public bool IsSetGrouping()
{
return this.groupingField != null;
}

public bool IsSetGapWidth()
{
return this.gapWidthField != null;
}

public CT_GapAmount AddNewGapWidth()
{
this.gapWidthField = new CT_GapAmount();
return this.gapWidthField;
}

public CT_UnsignedInt[] GetAxIdArray()
{
return [.. this.axIdField];
}
}


Expand Down Expand Up @@ -772,6 +803,43 @@ public CT_NumDataSource AddNewVal()
this.valField = new CT_NumDataSource();
return this.valField;
}

public CT_SerTx AddNewTx()
{
this.tx = new CT_SerTx();
return this.tx;
}

public bool IsSetTx()
{
return this.txField != null;
}

public bool IsSetDLbls()
{
return this.dLblsField != null;
}

public void AddNewDLbls()
{
this.dLblsField = new CT_DLbls();
}

public bool IsSetSpPr()
{
return this.spPrField != null;
}

public void UnsetSpPr()
{
this.spPrField = null;
}

public CT_ShapeProperties AddNewSpPr()
{
this.spPrField = new CT_ShapeProperties();
return this.spPrField;
}
}


Expand Down
Loading
Loading