<rangePr>
(Range Grouping Properties)
Represents the collection of range grouping properties.
<rangePr groupBy="months" startDate="2002-01-01T00:00:00" endDate="2006-05-06T00:00:00"/>
Parent Elements |
---|
|
Attributes |
Description |
---|---|
|
Specifies a boolean value that indicates whether the application will use the source data to set the ending range value. A value of on, 1, or true indicates the ending range value will be set from the source data. A value of off, 0, or false indicates ending range values will be set by the value specified in The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Specifies a boolean value that indicates whether we use source data to set the beginning range value. A value of on, 1, or true indicates the beginning range value will be set from the source data. A value of off, 0, or false indicates the beginning range value will be set from the value specified in The possible values for this attribute are defined by the XML Schema boolean datatype. |
|
Specifies the ending value for date grouping if The possible values for this attribute are defined by the XML Schema dateTime datatype. |
|
Specifies the ending value for numeric grouping if The possible values for this attribute are defined by the XML Schema double datatype. |
|
Specifies the grouping. The possible values for this attribute are defined by the ST_GroupBy simple type (§3.18.39). |
|
Specifies the grouping interval for numeric range grouping. Specifies the number of days to group by in date range grouping. The possible values for this attribute are defined by the XML Schema double datatype. |
|
Specifies the starting value for date grouping if The possible values for this attribute are defined by the XML Schema dateTime datatype. |
|
Specifies the starting value for numeric grouping if The possible values for this attribute are defined by the XML Schema double datatype. |
The following XML Schema fragment defines the contents of this element:
<complexType name="CT_RangePr">
<attribute name="autoStart" type="xsd:boolean" default="true"/>
<attribute name="autoEnd" type="xsd:boolean" default="true"/>
<attribute name="groupBy" type="ST_GroupBy" default="range"/>
<attribute name="startNum" type="xsd:double"/>
<attribute name="endNum" type="xsd:double"/>
<attribute name="startDate" type="xsd:dateTime"/>
<attribute name="endDate" type="xsd:dateTime"/>
<attribute name="groupInterval" type="xsd:double" default="1"/>
</complexType>