Charts

NOTE It should be pointed out that charts are very much a work in progress and the inclusion of the data structure is here for completeness.

re:chart

XML Tag

<re:chart type='' class='' style='' >
       ...
</re:chart>

DTD

<!ENTITY % class "class      CDATA #IMPLIED">
<!ENTITY % style "style      CDATA #IMPLIED">
<!ELEMENT re:chart (re:parameter*,re:dataset+)>
<!ATTLIST re:chart 
               type CDATA #REQUIRED %class; %style; >

Reference Examples

100_010

Children

re:dataset, re:parameter

Attributes

class, style, type

re:parameter

XML Tag

<re:parameter name='' value='' />

DTD

<!ELEMENT re:parameter EMPTY>
       <!ATTLIST re:parameter %name; %value; >

Reference Examples

100_010

Children

None

Attributes

name, value

name

The attribute name specifies one property to store in this charts definition.

value

The attribute value specifies a data type that is to be associated with the named property.

re:dataset

XML Tag

<re:dataset >
       ...
</re:dataset>

DTD

<!ELEMENT re:dataset (re:datarow)+ >
       <!ATTLIST re:dataset %name; >

Reference Examples

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Children

re:datarow

Attributes

name

re:datarow

XML Tag

<re:datarow>
...
</re:datarow>

DTD

<!ELEMENT re:datarow (re:datacell)+ >

Reference Examples

100_010

Children

re:datacell

Attributes

none

re:datacell

XML Tag

<re:datacell value=''>
       ...
</r:datacell>

DTD

<!ELEMENT re:datacell EMPTY>
       <!ATTLIST re:datacell %value; >

Reference Examples

100_010

Children

None

Attributes

value