dotnetCHARTING Send comments on this topic.
AdjustmentUnit Property
See Also 
dotnetCHARTING Namespace > CalendarPattern Class : AdjustmentUnit Property



Gets or sets a values by which the time interval is offset on the axis.

Syntax

Visual Basic (Declaration) 
Public Property AdjustmentUnit As TimeInterval
Visual Basic (Usage)Copy Code
Dim instance As CalendarPattern
Dim value As TimeInterval
 
instance.AdjustmentUnit = value
 
value = instance.AdjustmentUnit
C# 
public TimeInterval AdjustmentUnit {get; set;}
C++/CLI 
public:
property TimeInterval AdjustmentUnit {
   TimeInterval get();
   void set (TimeInterval value);
}

Remarks

This property can be useful with axis markers because tick marks may appear at the beginning of a time unit like month. The calendar pattern may need to be adjusted to properly correspond to axis ticks.

See Also