Skip to main content
A newer version of this page is available. .

ASPxDashboardViewer.RangeFilterDefaultValue Event

Provides the capability to specify the default selected range in the Range Filter dashboard item.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v18.2.Web.WebForms.dll

Declaration

public event RangeFilterDefaultValueEventHandler RangeFilterDefaultValue

Event Data

The RangeFilterDefaultValue event's data class is RangeFilterDefaultValueEventArgs. The following properties provide information specific to this event:

Property Description
ArgumentDateTimeGroupInterval Gets the date-time group interval applied to the Range Filter argument.
ArgumentType Gets the type of Range Filter’s argument values.
DashboardItemName Gets the component name of the Range Filter for which the event was raised.
Range Gets or sets the selected range for the current Range Filter dashboard item.

Remarks

Use the RangeFilterDefaultValueEventArgs.DashboardItemName event parameter to obtain the component name of the Range Filter for which the event was raised. The RangeFilterDefaultValueEventArgs.Range property allows you to specify the required selected range.

Note

To apply default filtering to other master filter items, handle the ASPxDashboardViewer.MasterFilterDefaultValues event.

Note

Note that the RangeFilterDefaultValue event has limitations when applying default filtering to master filter items that affect each other. To learn more, see the following example: How to apply default filtering to master filter items that affect each other.

See Also