共用方式為


Series Constructors

Definition

Overloads

Series()

Initializes a new instance of the Series class.

Series(OpenXmlElement[])

Initializes a new instance of the Series class with the specified child elements.

Series(IEnumerable<OpenXmlElement>)

Initializes a new instance of the Series class with the specified child elements.

Series(String)

Initializes a new instance of the Series class from outer XML.

Series()

Initializes a new instance of the Series class.

public Series ();
Public Sub New ()

Applies to

Series(OpenXmlElement[])

Initializes a new instance of the Series class with the specified child elements.

public Series (params DocumentFormat.OpenXml.OpenXmlElement[] childElements);
new DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing.Series : DocumentFormat.OpenXml.OpenXmlElement[] -> DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing.Series
Public Sub New (ParamArray childElements As OpenXmlElement())

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Series(IEnumerable<OpenXmlElement>)

Initializes a new instance of the Series class with the specified child elements.

public Series (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> childElements);
new DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing.Series : seq<DocumentFormat.OpenXml.OpenXmlElement> -> DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing.Series
Public Sub New (childElements As IEnumerable(Of OpenXmlElement))

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Series(String)

Initializes a new instance of the Series class from outer XML.

public Series (string outerXml);
new DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing.Series : string -> DocumentFormat.OpenXml.Office2016.Drawing.ChartDrawing.Series
Public Sub New (outerXml As String)

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to