C# Class HasK.Controls.Graph.ChartTextLine

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

Public Methods

Method Description
ChartTextLine ( Chart chart, DPoint begin, DPoint end, string text ) : System

Create text line on chart

ChartTextLine ( Chart chart, string text ) : System

Create text line on chart

Draw ( Graphics g ) : void

Chart will calls this method to draw object

Method Details

ChartTextLine() public method

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

ChartTextLine() public method

Create text line on chart
public ChartTextLine ( Chart chart, string text ) : System
chart Chart Chart for line
text string Text on 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