MindFusion.Charting Programmer's Guide

Shape Enumeration

See Also
 





Specifies the type of shapes that can be drawn at chart data points.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public enum Shape

Visual Basic  Copy Code

Public Enumeration Shape

JavaScript  Copy Code

// enum
Shape = {}

 Members

  Member name Description

Circle

The shape is drawn as a circle.

Rhombus

The shape is drawn as a rhombus.

Square

The shape is drawn as a square.

Triangle

The shape is drawn as a triangle.

 Remarks

The Enumeration specifies the type of geometrical figure drawn at data intersection points. Currently it is used in scatter and radar charts.

In line charts, the LineType should be set to LineTypes.Scatter. It can be combined with any other type of line chart. Multi-series line charts can have different point shapes for each line. See the Shapes property for more details. The point shapes for summary lines and Y2 graphics are set with SummaryShapes and Y2Shapes.

Shapes can be drawn at data points in radar/polar charts also. The RadarStyle property should be set to RadarStyle.Points. Each series can also have a different shape.

The shapes are drawn with pens and brushes as set with ShapePens  and ShapeBrushes property. The size of each shape is given by the ShapeSizes property.

 See Also