Use the seriesSet tag to wrap the series tags for a graph. You can define a maximum of 128 series for each graph.
The seriesSet tag specifies default settings for all series tags. Individual series tags can override the default settings.
Note: The seriesObjectCount attribute on the graph tag determines the number of series for which this graph displays separate properties (such as color) before repeating. The default value for seriesObjectCount is 30.
This component must be a child of one of the following components:
The seriesSet tag has the following child tag: series tag.
The following example shows the XML for a series tag that ...
<dvt:graph>
<dvt:seriesSet defaultColor="" defaultMarkerShape="MS_NONE"
defaultMarkerType="MT_DEFAULT" defaultLineWidth="3"
defaultAssignedToY2="DY2_AUTO_ASSIGN" defaultFitlineType="FT_NONE">
<dvt:series id="0" markerType="MT_DEFAULT" markerShape="MS_NONE" lineWidth="3"
assignedToY2="false" color="#336699" fitlineType="FT_NONE"/>
<dvt:series id="1" markerType="MT_DEFAULT" markerShape="MS_NONE" lineWidth="3"
assignedToY2="true" color="#99ccff" fitlineType="FT_NONE"/>
</dvt:seriesSet>
</dvt:graph>
| Name | Type | Supports EL? | Description |
|---|---|---|---|
| id | java.lang.String | no | Specifies the identifier for the component |
| defaultColor | java.lang.String | no | Specifies the default fill color in RGB Hex. Default value is "#ccff00". |
| defaultMarkerColor | java.lang.String | no | Specifies the default marker color in RGB Hex. |
| defaultBorderColor | java.lang.String | no | Specifies the color of the border for each series. Enter values in RGB hexadecimal. The example color="#000000" specifies black. |
| defaultBorderTransparent | boolean | no | Indicates whether the border of the graph series is transparent. To make the series transparent, set both the borderTransparent and fillTransparent attributes to "false". |
| defaultFitlineType | java.lang.String | no | Specifies the default type of fitline, if any, that is displayed for each series. |
| defaultLineWidth | int | no | Specifies the default line width for a series. This attribute is relevant only for line, scatter, and combination graphs. |
| defaultMarkerShape | java.lang.String | no | |
| defaultMarkerType | java.lang.String | no | |
| defaultAssignedToY2 | java.lang.String | no | |
| seriesMap | java.util.Map | no | Specifies a Map containing Series child components. |