<xsd:documentation>The order of this axis. The order should
begin with one and increment by one for each additional axis.
The order indicates how fast the index of the axis varies
in the serialized list of values.
The index of an axis with an order of one varies the slowest.
The index of an axis with an order of two varies the next slowest.
And so on. This is the same ordering that is used in the C programming language.
For example, the following array:
[ x axis ]
| z11 z12 z13
y axis: z21 z22 z23
| z31 z32 z33
| z41 z42 z43
may be encoded as follows:
axisDefinition[order=1].name='x'
axisDefinition[order=1].count='3'
axisDefinition[order=2].name='y'
axisDefinition[order=2].count='4'
{ z11 z21 z31 z41 z12 z22 z32 z42 z13 z23 z33 z43 }
or alternatively:
axisDefinition[order=1].name='y'
axisDefinition[order=1].count='4'
axisDefinition[order=2].name='x'
axisDefinition[order=2].count='3'
{ z11 z12 z13 z21 z22 z23 z31 z32 z33 z41 z42 z43 }
STORE UNIQUE KEY: When accessed via the Store Interface, the "order" must be unique.
</xsd:documentation>
<xsd:appinfo>Modified-in-version=1.4.0, By-issue=1.3.1-49, Change=Modified-description</xsd:appinfo>