Replaces a series' missing data points with empty points. The series is checked for a given interval that is determined by the interval and intervalType arguments.
Insert empty data points using specified interval.
Visual Basic (Declaration) | |
---|---|
Public Overloads Sub InsertEmptyPoints( _ ByVal interval As Double, _ ByVal intervalType As IntervalType, _ ByVal series As Series _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public void InsertEmptyPoints( double interval, IntervalType intervalType, Series series ) |
Parameters
- interval
-
The interval that is checked for missing data points.
Interval size. - intervalType
- The unit of measurement for the interval parameter.
Interval type. - series
- The Series object that is checked.
Series to insert the empty points in.
The following sample demonstrates how to insert empty points for every day that does not have a data point. Note that we first add randomly-sized data points to "Series1", but we do not add points if it is Saturday or Sunday. When the InsertEmptyPoints method is called an empty point will then be inserted for each Saturday and Sunday.
Visual Basic | Copy Code |
---|---|
Imports Dundas.Charting.WinControl |
The series range that is checked for missing data is automatically determined by the minimum and maximum X-values of the series' data points. To check a smaller range use another definition of this function that has fromXValue and toXValue parameters.
When using an IntervalType of IntervalType.Days know that Sunday is regarded as the first day of the week.
To check one specific day of the week that is not Sunday use another definition of this function that takes an intervalOffset parameter.
The drawing style of empty points is set by the Series.EmptyPointStyle property.
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family