2.4.6.2.9 CT_DataGraphics

Referenced by: DataGraphics

The CT_DataGraphics complex type specifies information used to update all the data graphics in a Web drawing.

Child Elements:

Page : A list of CT_DataGraphics_Page elements.

Attributes:

ColorTable :  An xsd:string ([XMLSCHEMA2] section 3.2.1) attribute that specifies the list of colors used to render data graphics. It MUST have the following format:

 R1,G1,B1 R2,G2,B2 … Rn,Gn,Bn

Each color MUST be specified using the RGB color model as described in the following table. The components of a color MUST be separated by commas. The colors MUST be separated by single spaces.

Name

Description

Rn

An integer value that specifies the red component of the color. MUST be greater than or equal to 0 and less than or equal to 255.

Gn

An integer value that specifies the green component of the color. MUST be greater than or equal to 0 and less than or equal to 255.

Bn

An integer value that specifies the blue component of the color. MUST be greater than or equal to 0 and less than or equal to 255.

The following W3C XML Schema ([XMLSCHEMA1] section 2.1) fragment specifies the contents of this complex type.

 <xsd:complexType name="CT_DataGraphics">
   <xsd:sequence>
     <xsd:element name="Page" minOccurs="1" maxOccurs="unbounded" type="CT_DataGraphics_Page"/>
   </xsd:sequence>
   <xsd:attribute name="ColorTable" type="xsd:string"/>
 </xsd:complexType>