<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 |
---|---|
|
Specifies the points on the scatter chart shall be connected with straight lines but markers shall not be drawn. |
|
Specifies the points on the scatter chart shall be connected with straight lines and markers shall be drawn. |
|
Specifies the points on the scatter chart shall not be connected with lines and markers shall be drawn. |
|
Specifies the points on the scatter chart shall not be connected with straight lines and markers shall not be drawn. |
|
Specifies the the points on the scatter chart shall be connected with smoothed lines and markers shall not be drawn. |
|
Specifies the the points on the scatter chart shall be connected with smoothed lines and markers shall be drawn. |
Referenced By |
---|
|
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>