C# Class HasK.Controls.Graph.ChartTextLine

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

Méthodes publiques

Méthode 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 méthode

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
Résultat System

ChartTextLine() public méthode

Create text line on chart
public ChartTextLine ( Chart chart, string text ) : System
chart Chart Chart for line
text string Text on line
Résultat System

Draw() public méthode

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