<ST_Shape>
(Shape)
This simple type specifies the possible shapes for a 3-D data marker.
This simple type's contents are a restriction of the XML Schema string datatype.
The following are possible enumeration values for this type:
Enumeration Value |
Description |
---|---|
|
Specifies the chart shall be drawn with a box shape. |
|
Specifies the chart shall be drawn as a cone, with the base of the cone on the floor and the point of the cone at the top of the data marker. |
|
Specifies the chart shall be drawn with truncated cones such that the point of the cone would be the maximum data value. |
|
Specifies the chart shall be drawn as a cylinder. |
|
Specifies the chart shall be drawn as a rectangular pyramid, with the base of the pyramid on the floor and the point of the pyramid at the top of the data marker. |
|
Specifies the chart shall be drawn with truncated cones such that the point of the cone would be the maximum data value. |
Referenced By |
---|
|
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_Shape">
<restriction base="xsd:string">
<enumeration value="cone"/>
<enumeration value="coneToMax"/>
<enumeration value="box"/>
<enumeration value="cylinder"/>
<enumeration value="pyramid"/>
<enumeration value="pyramidToMax"/>
</restriction>
</simpleType>