MindFusion.Charting Programmer's Guide

LineChart.LineType Property

See Also
 





Gets or set the type of the line chart.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public LineTypes LineType { get; set; }

Visual Basic  Copy Code

Public Property LineType As LineTypes

 Property Value

One of the LineTypes enumeration values.

 Remarks

The members of the LineTypes enumeration allow bitwise combination, which increases the variety of charts that can be drawn.

When using MindFusion.Charting programmatically, the type of line chart is set in the constructor. It can later be changed with the LineType property.

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

 See Also