MindFusion.Charting Programmer's Guide

RadarChart.ShapeSizes Property

See Also
 





Specifies the size of shapes drawn at data points.

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

 Syntax

C#  Copy Code

public IList ShapeSizes { get; }

Visual Basic  Copy Code

Public ReadOnly Property ShapeSizes As IList

 Property Value

An object of type .NET IList class that holds float values, which represent the sizes of radar shapes.

 Remarks

Use the property to specify the size of 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 to the Shapes property.

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

When the numbers in ShapeSizes are less than the count of data series added to the Data property, MindFusion.Charting cycles through them.

Default value for the ShapeSizes property is an empty list. If no shape is set, the shapes are drawn with width 10.

 See Also