C# Class HasK.Controls.Graph.ChartLine

One-pixel line on chart with specified points of begin, end, and specified color
Inheritance: ChartVisibleObject
Show file Open project: xHasKx/CSharp.Controls.Graph.Chart Class Usage Examples

Public Methods

Method Description
ChartLine ( Chart chart ) : System

Create line on chart

ChartLine ( Chart chart, DPoint begin, DPoint end ) : System

Create line on chart

Draw ( Graphics g ) : void

Chart will calls this method to draw object

Method Details

ChartLine() public method

Create line on chart
public ChartLine ( Chart chart ) : System
chart Chart Chart for line
return System

ChartLine() public method

Create line on chart
public ChartLine ( Chart chart, DPoint begin, DPoint end ) : System
chart Chart Chart for line
begin DPoint Begin point of line
end DPoint End point of line
return System

Draw() public method

Chart will calls this method to draw object
public Draw ( Graphics g ) : void
g System.Drawing.Graphics Graphics, which should be used for drawing
return void