MindFusion.Charting Programmer's Guide

LineTypes Enumeration

See Also
 





Specifies the different types of line/area/scatter/bubble charts that can be drawn.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public enum LineTypes

Visual Basic  Copy Code

Public Enumeration LineTypes

JavaScript  Copy Code

// enum
LineTypes = {}

 Members

  Member name Description

Area

The chart is drawn as area.

Area3D

The chart is drawn as area with 3D visual effect.

Bubble

The chart is drawn with bubbles. Each bubble has the coordinates of the respective XData and YData numbers. Its size is set by its Y2Data.

Bubble3D

The chart is drawn with bubbles that have 3D visual outlook. Each bubble has the coordinates of the respective XData and YData numbers. Its size is set by its Y2Data.

Line

The chart is drawn in the shape of a line.

Line3D

The chart is drawn as a line with 3D visual effect.

Scatter

The chart is drawn with shape markers at data points.

 Remarks

The enumeration specifies the different types of line and respectively area charts that the control can draw. Its members allow bitwise combinations, which makes the variety of charts that can be drawn bigger.

Line charts can be drawn not only as a combination of straight lines but also as a curve. This is set with Curve property.

The property that manipulates the type of the LineChart set is called LineType. When using MindFusion.Charting programmatically, the initial type of the chart created is specified in the constructor.

If you want to draw more than one data graphics in a single line chart you should add the numerical data to the XData and/or YData properties. You can also draw a second Y axis and graphics, which data is bound to it. Use the Y2Data property for that. The Y2Data property stores bubbles radiuses if applied to bubble charts.

The sort sequence of the charts series data is set with the SortSeriesBy property.

 See Also