Replaces a series' missing data points with empty points. The series is checked for a given interval that is determined by the interval, intervalOffset, intervalOffsetType and intervalType arguments. The series range that is checked is determined by the toXValue and fromXValue arguments.
Insert empty data points using specified interval.
Visual Basic (Declaration) | |
---|---|
Public Overloads Sub InsertEmptyPoints( _ ByVal interval As Double, _ ByVal intervalType As IntervalType, _ ByVal intervalOffset As Double, _ ByVal intervalOffsetType As IntervalType, _ ByVal fromXValue As Double, _ ByVal toXValue As Double, _ ByVal series As Series _ ) |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public void InsertEmptyPoints( double interval, IntervalType intervalType, double intervalOffset, IntervalType intervalOffsetType, double fromXValue, double toXValue, 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. - intervalOffset
- The interval offset.
Interval offset size. - intervalOffsetType
- The unit of measurement for the intervalOffset parameter.
Interval offset type. - fromXValue
- Determines the starting point for the series range to be checked. Uses the X-values of the data points.
Check intervals from this X value. - toXValue
- Determines the end point for the series range to be checked. Uses the X-values of the data points.
Check intervals until this X value. - series
- The Series object that is checked.
Series to insert the empty points in.
Visual Basic | Copy Code |
---|---|
Imports Dundas.Charting.WinControl |
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 set the intervalOffset parameter to a non-zero value (e.g. a value of "1" will offset the day to be checked from Sunday to Monday).
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