MindFusion.Charting Programmer's Guide

RadarChart.InnerAxisPen Property

See Also
 





Gets or sets the pen for drawing the inner axis.

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

 Syntax

C#  Copy Code

public Pen InnerAxisPen { get; set; }

Visual Basic  Copy Code

Public Property InnerAxisPen As Pen

 Property Value

An instance of MindFusion.Drawing.Pen class.

 Remarks

The property specifies the pen for drawing the inner axes of the chart. The inner axes coincide with some of the radiuses for the chart. The primary inner axes, the one that holds labels on it, is positioned as set with the InnerAxisPosition. The count of the inner axes depends on the count of elements in the longest list added to the Data property.

Only one of the inner axis has labels. The type of the labels is set with InnerAxisLabelType, custom labels are specified with InnerAxisLabels.

All inner axes are drawn with the same pen. In contrast, the outer axis is drawn with OuterAxisPen, while alternative axes, concentric to the outer one, are drawn with pens from the AltAxesPens property.

Default value for the InnerAxisPen property is a MindFusion.Drawing.Pen with black color and default width.

 See Also