MindFusion.Charting Programmer's Guide

RadarChart.Shapes Property

See Also
 





Specifies the shapes for data points.

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

 Syntax

C#  Copy Code

public IList Shapes { get; }

Visual Basic  Copy Code

Public ReadOnly Property Shapes As IList

 Property Value

An object of type .NET IList class that holds Shape objects.

 Remarks

Use the property to specify 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 lists.

The shapes are drawn with pens from ShapePens and are filled with brushes from ShapeBrushes.

Default value for the Shapes property is an empty list.

 See Also