MindFusion.Charting Programmer's Guide

LineChart.SummaryShapes Property

See Also
 





Gets or sets the shapes drawn at summary scatter charts.

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

 Syntax

C#  Copy Code

public IList SummaryShapes { get; }

Visual Basic  Copy Code

Public ReadOnly Property SummaryShapes As IList

 Property Value

An instance of the .NET IList class with Shape objects.

 Remarks

The property specifies the type of shapes, drawn at summary scatter charts. In order to draw summary lines, add the desired Summary value to the SummaryValues property. Custom summaries are added with the AddCustomSummary method. Add the Shape objects in the same order in which you add the Summary values.

The point shapes of summary lines are filled with brushes from the SummaryShapeBrushes property.

Their outlining is drawn with pens from the SummaryShapePens property.

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

Default value for the SummaryShapes property is an empty IList object.

 See Also