bindingInfo.setTimeSeries(col, Boolean)

Specifies that gaps in Date data should be retained. For example, if the data in the Crosstab is grouped by month, and there is no data for the month of June, the setTimeSeries property ensures that the month of June is still retained in the Crosstab.

Parameter

col

Name of field to set as time-series

Boolean

true: gaps are preserved for date data
false: gaps are removed

Example

Crosstab1.bindingInfo.setTimeSeries("Order:Date", true);

setTimeSeries 2

Either syntax below can be used in component script:

bindingInfo.setTimeSeries             // unqualified
Crosstab1.bindingInfo.setTimeSeries   // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.