[Table of Contents] [docx version]
Error! No text of specified style in document.
This simple type specifies the possible groupings for a bar chart.
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 |
clustered (Clustered) |
Specifies that the chart series are drawn next to each other along the category axis. |
percentStacked (100% Stacked) |
Specifies that the chart series are drawn next to each other along the value axis and scaled to total 100%. |
stacked (Stacked) |
Specifies that the chart series are drawn next to each other on the value axis. |
standard (Standard) |
Specifies that the chart series are drawn next to each other on the depth axis. |
Referenced By |
grouping@val (§5.7.2.77) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_BarGrouping">
<restriction base="xsd:string">
<enumeration value="percentStacked"/>
<enumeration value="clustered"/>
<enumeration value="standard"/>
<enumeration value="stacked"/>
</restriction>
</simpleType>