IDataPointFilter::FilterDataPoint Method
Determines whether a particular data point in the series will be filtered.
Assembly: System.Web.DataVisualization (in System.Web.DataVisualization.dll)
Parameters
- point
- Type: System.Web.UI.DataVisualization.Charting::DataPoint
The DataPoint object to be filtered.
- series
- Type: System.Web.UI.DataVisualization.Charting::Series
The Series object that the data point belongs to.
- pointIndex
- Type: System::Int32
The index of the data point, which determines its position in the series.
This method should be called for each data point in a series, and returns a Boolean value indicating whether a data point should be filtered.
To provide custom filtering, derive a new or existing class from the IDataPointFilter interface and then implement this method. Provide custom criteria matching logic, then return true or false to mark the data points to be filtered. After this method has been implemented, use one of the Filter method definitions in the DataManipulator class that takes an IDataPointFilter object as a parameter to perform the filtering.
Filtered points, by default, are removed from a series. They can also be displayed as empty points by setting the value of the FilterSetEmptyPoints property to true.
Filtered points can also be marked as filtered if they do not match filtering criteria, as determined by the FilterMatchedPoints value.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.