MindFusion.Charting Programmer's Guide

LineChart.Y2Shapes Property

See Also
 





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

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

 Syntax

C#  Copy Code

public IList Y2Shapes { get; }

Visual Basic  Copy Code

Public ReadOnly Property Y2Shapes As IList

 Property Value

An object of type .NET IList that holds Shape objects.

 Remarks

The property specifies the style of point shapes, drawn at Y2-scatter charts. In order to draw lines for the second Y-axis, add the desired data to the Y2Data property. The X-values of the lines are taken from the XData property.

The point shapes of Y2 lines are filled with brushes from the Y2ShapeBrushes property. Their outlining is drawn with pens from the Y2ShapePens property.

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

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

 See Also