MindFusion.Charting Programmer's Guide

LineChart.Curve Property

See Also
 





Gets or sets whether lines in line charts are drawn like curves.

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

 Syntax

C#  Copy Code

public bool Curve { get; }

Visual Basic  Copy Code

Public ReadOnly Property Curve As Boolean

 Property Value

A bool value that specifies whether lines and areas are rounded, as curves (true), or as a succession of straight segments (false).

 Remarks

The property allows line and area charts to be drawn as rounded curves instead of a combination of straight lines. The property can be applied to all 2D and 3D line/area charts. The type of the chart is set with LineType.

Default value for the Curve property is false.

 See Also