MindFusion.Charting Programmer's Guide

AxesChart.VertGridPens Property

See Also
 





Gets or sets the pens for drawing vertical grid lines in custom grids.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public PenCollection VertGridPens { get; set; }

Visual Basic  Copy Code

Public Property VertGridPens As PenCollection

 Property Value

 Remarks

The property specifies the pens for drawing vertical grid lines in custom grids. In this case the grid stripes are filled with brushes from the VertGridBrushes property. The position of the grid lines is specified with VertGridPoints.

Custom grids can have labels at the X-axis. The labels are set with XGridLabels property.

When the GridType is not GridType.Custom, the grid is drawn with the GridPen and the grid stripes are filled with GridBrush and AltGridBrush.

Default value for the VertGridPens property is an empty PenCollection.

 See Also