MindFusion.Charting Programmer's Guide

RadarChart.ShapePens Property

See Also
 





Specifies the pens for outlining the shapes drawn at data points.

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

 Syntax

C#  Copy Code

public PenCollection ShapePens { get; set; }

Visual Basic  Copy Code

Public Property ShapePens As PenCollection

 Property Value

An instance of MindFusion.Drawing.PenCollection class.

 Remarks

Use the property to specify the pens for outlining the shapes, drawn at data points. Shapes are drawn when the RadarStyle property is set to RadarStyle.Points.

Each Data series can be drawn with different shapes, which have different width. Add the desired Shape member and size to the Shapes and ShapeSizes property - lists. The shapes are filled with brushes from the ShapeBrushes property. When the ShapePens are less than the count of data series added to the Data property, MindFusion.Charting cycles through them.

Default value for the ShapePens property is an empty PenCollection.

 See Also