MindFusion.Charting Programmer's Guide

LineChart.ShapeSizes Property

See Also
 





Gets or sets the size of point shapes drawn at scatter charts.

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 instance of the .NET IList class with float values. 

 Remarks

The property specifies the size of point shapes drawn in scatter charts. Add the values in the same order as you have added the Shape objects to the Shapes property.

The size of the point shapes indicates:

  • For circles - the diameter of the circle;
  • For rhombuses, triangles and squares - the length of the side;

For each point shape in the Shapes property, you can specify not only the size, but also the color with the ShapeBrushes, ShapePens and MultiColoredShapes properties.

Scatter charts are drawn when the LineType property se set to LineTypes.Scatter.

Default value for the ShapeSizes property is an empty IList.

 See Also