Constructor with line parameters
SYNTAX
public LineSettings (LineStyle style,Color color,int width)
PARAMETERS
style — LineStyle
color — Color
width — int
EXAMPLE
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Drawing; using PTLRuntime.NETScript; using PTLRuntime.NETScript.Charts; namespace ChartPropertiesExamples { public class LineSettingsExamples : NETStrategy { LineSettings line; public override void Init() { line = new LineSettings(LineStyle.DotLineChart, Color.White, 2); } } }