MindFusion.Charting Programmer's Guide

AxesChart.GridLabelOffset Property

See Also
 





Gets or sets the offset of grid labels.

Namespace: MindFusion.Charting.WebForms
Assembly: MindFusion.Charting.WebForms

 Syntax

C#  Copy Code

public float GridLabelOffset { get; }

Visual Basic  Copy Code

Public ReadOnly Property GridLabelOffset As Single

 Property Value

A float value.

 Remarks

The property specifies the offset of custom grid labels to the nearest chart object - the grid bracket (if GridLabelPointer is greater than zero), the axis labels (if LabelType is not Empty) or the axis. The property sets the offset for labels at all axes - X, Y and Y2 (if present).

The property is used only with custom grids, for example, the GridType is set to Custom. Grid labels are set with XGridLabels, YGridLabels and Y2GridLabels.

Default value for the GridLabelOffset property is 5f.

 See Also