TickMark Class
Represents the major and minor tick marks along an axis.
System.Web.UI.DataVisualization.Charting::Grid
System.Web.UI.DataVisualization.Charting::TickMark
Assembly: System.Web.DataVisualization (in System.Web.DataVisualization.dll)
The TickMark type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Enabled | Gets or sets a flag that determines whether major or minor grid lines are enabled. (Inherited from Grid.) |
![]() | Interval | Gets or sets the interval between major or minor grid lines. (Inherited from Grid.) |
![]() | IntervalOffset | Gets or sets the offset of grid lines. (Inherited from Grid.) |
![]() | IntervalOffsetType | Gets or sets the interval offset type of major and minor grid lines. (Inherited from Grid.) |
![]() | IntervalType | Gets or sets the interval type for major or minor grid lines. (Inherited from Grid.) |
![]() | LineColor | Gets or sets the line color of a grid. (Inherited from Grid.) |
![]() | LineDashStyle | Gets or sets the line style of a grid. (Inherited from Grid.) |
![]() | LineWidth | Gets or sets the line width of major and minor grid lines. (Inherited from Grid.) |
![]() | Size | Gets or sets the length of tick marks. The length is measured in units that represent a percentage of the height or width of the chart image, depending on the axis. |
![]() | TickMarkStyle | Gets or sets the tick mark style. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The TickMark class encapsulates the functionality for all chart tick marks.
The TickMark class is exposed as the MajorTickMark and MinorTickMark properties of Axis objects.
By default, major tick marks are displayed at the major grid lines, whereas minor tick marks must be explicitly displayed.
MajorTickMark.Interval is not set (Double.NaN) by default, and the tick marks are drawn according to Interval. MinorTickMark.Interval is set to Auto (0) by default, and the Chart control automatically determines the interval.
A developer can use this class to:
Enable or disable tick marks.
Set the color, width, length and line style of tick marks.
Specify a style that determines whether tick marks are displayed outside the axis, inside the axis or across the axis.
Specify the starting point—where the first tick mark is drawn—as well as the tick mark interval, which correlates to their frequency.
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.


