LineSettings (LineStyle style, Color color, int width)
constructor
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);
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.