Dundas Chart for Windows Forms
Add(Double,DateTimeIntervalType,String) Method
See Also  Send comments on this topic.
DundasWinChart Assembly > Dundas.Charting.WinControl Namespace > CustomLabelsCollection Class > Add Method : Add(Double,DateTimeIntervalType,String) Method


labelsStep
The interval that custom labels will be drawn at.
The interval that custom labels will be drawn at.
Label step size.
intervalType
A DateTimeIntervalType enumeration value, which determines the interval type.
Label step type.
format
A value that determines the formatting of the custom label. See the Date and Time Format Strings topic in the MSDN library for further details.
Label text format.

Adds multiple DateTime CustomLabel objects to the collection. Populates an axis' entire first row with labels, with the given formatting.


Adds custom labels into the collection using min and max values and step.

Syntax

Visual Basic (Declaration)  
Public Overloads Sub Add( _
   ByVal labelsStep As Double, _
   ByVal intervalType As DateTimeIntervalType, _
   ByVal format As String _
) 
Visual Basic (Usage) Copy Code
Dim instance As CustomLabelsCollection
Dim labelsStep As Double
Dim intervalType As DateTimeIntervalType
Dim format As String
 
instance.Add(labelsStep, intervalType, format)
C#  
public void Add( 
   double labelsStep,
   DateTimeIntervalType intervalType,
   string format
)

Parameters

labelsStep
The interval that custom labels will be drawn at.
The interval that custom labels will be drawn at.
Label step size.
intervalType
A DateTimeIntervalType enumeration value, which determines the interval type.
Label step type.
format
A value that determines the formatting of the custom label. See the Date and Time Format Strings topic in the MSDN library for further details.
Label text format.

Remarks

This constructor will create and initialize CustomLabel objects for an axis' entire first label row with DateTime labels of the specified type.

The step determines how often the custom labels will be drawn, and optional label formatting can be specified as well.

NOTE: the ChartArea.Recalc method must be called prior to calling this particular method definition .

Requirements

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

See Also

© 2009 All Rights Reserved.