MindFusion.Charting Programmer's Guide

AxesChart.HorGridPoints Property

See Also
 





Gets or sets the positions of horizontal lines in custom grids.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList HorGridPoints { get; set; }

Visual Basic  Copy Code

Public Property HorGridPoints As IList

 Property Value

An object of type .NET IList.

 Remarks

HorGridPoints is used when GridType is set to GridType.Custom. The values should range from 0 to 100 with 0 coinciding with the start of the Y-axis and 100 - with its end.

The stripes are drawn with HorGridPens and are filled with HorGridBrushes. You can leave the property empty if you do not need horizontal grid lines.

Default value for the HorGridPoints property is an empty list.

 See Also