MindFusion.Charting Programmer's Guide

LineChart.Shapes Property

See Also
 





Gets or sets the shape of data points in scatter charts.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList Shapes { get; set; }

Visual Basic  Copy Code

Public Property Shapes As IList

 Property Value

An IList with Shape members.

 Remarks

The property specifies the shapes of scatter charts. Add a Shapes object for each scatter graphics. For summary lines and Y2-lines the properties are SummaryShapes and Y2Shapes.

Each point shape can have different size as indicated by the ShapeSizes property. The MultiColoredShapes property specifies whether point shapes are drawn in one color or in many colors.

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

Default value for the Shapes property is an empty IList.

 See Also