Use the timeSelector tag to select a certain time range on a time axis. Typically used in a master-detail graphs. The selected time range in the master graph is displayed in the detail graph.
The timeSelector tag is a child tag of the graph tag.
The timeSelector tag can have the following child tag: specialEffects.
The following example shows the XML for a timeSelector tag.
<dvt:graph>
<dvt:timeSelector explicitStart="#{sampleGraph.startDate}"
explicitEnd="#{sampleGraph.endDate}" borderColor="#cccccc"
borderTransparent="false" mode="EXPLICIT"
fillColor="#ffffff" fillTransparent="false"/>
</dvt:graph>
| Name | Type | Supports EL? | Description |
|---|---|---|---|
| id | java.lang.String | no | Specifies the unique identifier for the component. |
| fillColor | java.lang.String | no | Specifies the color of the fill for the time selector. Enter values in RGB hexadecimal. The example color="#000000" specifies black. |
| borderColor | java.lang.String | no | Specifies the color of the border for the time selector. Enter values in RGB hexadecimal. The example color="#000000" specifies black. |
| borderTransparent | boolean | no | |
| fillTransparent | boolean | no | |
| explicitStart | java.util.Date | no | Specifies the explicit start date for the time selector. Mode must be set to EXPLICIT. Only value-binding is supported for this property. |
| explicitEnd | java.util.Date | no | Specifies the explicit end date for the time selector. Mode must be set to EXPLICIT. Only value-binding is supported for this property. |
| mode | java.lang.String | no | Indicates the mode of the time selector. It can be set to EXPLICIT or OFF. |