DataFilter.Value Property
In This Article
Gets or sets the filter value represented by the current data filter item.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v14.2.dll
#Declaration
[TypeConverter(typeof(ValueTypeConverter))]
[XtraSerializableProperty]
public object Value { get; set; }
#Property Value
Type | Description |
---|---|
Object | A Object representing the value by which the series data is filtered. |
#Remarks
The Value property specifies the value by which series data should be filtered. Note that the Value property is tightly associated with the DataFilter.DataType property of a data filter object: the value assigned to the Value property should correspond to the data type set via the DataFilter.DataType property.
In addition to the value and its data type, a filter condition represented by a particular DataFilter object is defined by the DataFilter.Condition and DataFilter.ColumnName properties.
See Also