MindFusion.Charting Programmer's Guide

LineChart.Y2ShapeSizes Property

See Also
 





Gets or sets the size of point shapes drawn at Y2 lines.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public IList Y2ShapeSizes { get; set; }

Visual Basic  Copy Code

Public Property Y2ShapeSizes As IList

 Property Value

An IList with float numbers.

 Remarks

The property specifies the size of point shapes drawn at Y2 lines. 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. Each float value in the Y2ShapeSizes array indicates:

  • For point shapes of type Shape.Circle - the radius of the point shape
  • For point shapes of type Shape.Triangle, Shape.Rhombus and Shape.Square - the side of the figure

The point shapes of Y2lines 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 Y2ShapeSizes  property is an empty IList object.

 See Also