TickMark Class

Definition

Represents the major and minor tick marks along an axis.

public ref class TickMark : System::Web::UI::DataVisualization::Charting::Grid
public class TickMark : System.Web.UI.DataVisualization.Charting.Grid
type TickMark = class
    inherit Grid
Public Class TickMark
Inherits Grid
Inheritance
TickMark

Remarks

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.

Constructors

TickMark()

Initializes a new instance of the TickMark class.

Properties

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.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(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)

Applies to