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
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList ShapeSizes { get; set; }

Visual Basic  Copy Code

Public Property ShapeSizes As IList

 Property Value

An IList object with float values that specify the sizes.

 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