[Table of Contents] [docx version]
Error! No text of specified style in document.
ST_ScatterStyle (Scatter Style)
This simple type specifies the possible styles of scatter 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 |
line (Line) |
Specifies the points on the scatter chart shall be connected with straight lines but markers shall not be drawn. |
lineMarker (Line with Markers) |
Specifies the points on the scatter chart shall be connected with straight lines and markers shall be drawn. |
marker (Marker) |
Specifies the points on the scatter chart shall not be connected with lines and markers shall be drawn. |
none (None) |
Specifies the points on the scatter chart shall not be connected with straight lines and markers shall not be drawn. |
smooth (Smooth) |
Specifies the the points on the scatter chart shall be connected with smoothed lines and markers shall not be drawn. |
smoothMarker (Smooth with Markers) |
Specifies the the points on the scatter chart shall be connected with smoothed lines and markers shall be drawn. |
Referenced By |
scatterStyle@val (§5.7.2.163) |
The following XML Schema fragment defines the contents of this simple type:
<simpleType name="ST_ScatterStyle">
<restriction base="xsd:string">
<enumeration value="none"/>
<enumeration value="line"/>
<enumeration value="lineMarker"/>
<enumeration value="marker"/>
<enumeration value="smooth"/>
<enumeration value="smoothMarker"/>
</restriction>
</simpleType>