MindFusion.Charting Programmer's Guide

LineChart.SummaryShapePens Property

See Also
 





Gets or sets the pens for drawing shapes at summary scatter chart.

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

 Syntax

C#  Copy Code

public PenCollection SummaryShapePens { get; set; }

Visual Basic  Copy Code

Public Property SummaryShapePens As PenCollection

 Property Value

An instance of MindFusion.Drawing.PenCollection that holds the pens.

 Remarks

The property specifies the pens, with which point shapes at summary scatter charts are drawn. In order to draw summary lines, add the desired Summary value to the SummaryValues property. Custom summaries are added with the AddCustomSummary method.

The point shapes of summary lines are filled with brushes from the SummaryShapeBrushes property. If the SummaryShapeBrushes is an empty array, the control uses a default blue gradient brush. If the SummaryShapePens are an empty list, a default black pen is used.

The size of the summary point shapes is set with SummaryShapeSizes.

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

Default value for the SummaryShapePens property is an empty PenCollection object.

 See Also