DateFilterDashboardItem.FilterType Property
In This Article
Gets or sets the Date Filter type.
Namespace: DevExpress.DashboardCommon
Assembly: DevExpress.Dashboard.v24.2.Core.dll
NuGet Package: DevExpress.Dashboard.Core
#Declaration
[DefaultValue(DateFilterType.Between)]
public DateFilterType FilterType { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Date |
Between | A Date |
Available values:
Name | Description |
---|---|
Between | Dates between the Start and the End dates. |
After | Dates after the Start date. |
Before | Dates before the End date. |
Exact | A date equal to the End date. |
#Remarks
The DateTime range set in the Date Filter can be interpreted differently - to filter dates before a certain date, after a certain date, between two dates, or to filter a date equal to a certain date. The FilterType property specifies the interpretation.
See Also