2.129 ChartValueAxes

Applies to RDL 2008/01, RDL 2010/01, and RDL 2016/01

The ChartValueAxes element defines a list of value (Y) axes. This element specifies the collection of ChartAxis instances as value (Y) axes for a ChartArea.

The ChartValueAxes element SHOULD NOT contain more than one ChartAxis that has the ChartAxis.Location element set to "Default". Additionally, the ChartValueAxes element SHOULD NOT contain more than one chart axis that has the ChartAxis.Location element set to "Opposite".

The following are the parent and child elements of the ChartValueAxes element.

Parent elements

ChartArea

 Child elements

ChartValueAxes.ChartAxis

The following is the XML Schema definition of the ChartValueAxes element in RDL 2008/01.

 <xsd:complexType name="ChartValueAxesType">
   <xsd:choice minOccurs="0" maxOccurs="unbounded">
     <xsd:element name="ChartAxis" type="ChartAxisType" minOccurs="1" />
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>

The following is the XML Schema definition of the ChartValueAxes element in RDL 2010/01 and RDL 2016/01.

 <xsd:complexType name="ChartValueAxesType">
   <xsd:choice minOccurs="0" maxOccurs="unbounded">
     <xsd:element name="ChartAxis" type="ChartAxisType" minOccurs="1" />
     <xsd:any namespace="##other" processContents="lax" />
   </xsd:choice>
   <xsd:anyAttribute namespace="##other" processContents="lax" />
 </xsd:complexType>