C# Class Graph.Graph

Static class containing graph algorithms.
ファイルを表示 Open project: ufcpp/UfcppSample Class Usage Examples

Public Methods

Method Description
AddEntry ( double x, double y, Pen pen ) : void
AutoScale ( ) : void
AutoScaleX ( ) : void
AutoScaleY ( ) : void
Graph ( ) : System
SetXAxis ( double min, double max, int split, Font font, Brush brush ) : void
SetYAxis ( double min, double max, int split, Font font, Brush brush ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

使用されているリソースに後処理を実行します。

DrawGraph ( Graphics g, Entry entry ) : void

Private Methods

Method Description
InitializeComponent ( ) : void

デザイナ サポートに必要なメソッドです。このメソッドの内容を コード エディタで変更しないでください。

MaxMinValue ( double array, double &min, double &max ) : void
plotArea_Paint ( object sender, System e ) : void
plotArea_Resize ( object sender, System e ) : void
xAxis_Paint ( object sender, System e ) : void
xAxis_Resize ( object sender, System e ) : void
yAxis_Paint ( object sender, System e ) : void
yAxis_Resize ( object sender, System e ) : void

Method Details

AddEntry() public method

public AddEntry ( double x, double y, Pen pen ) : void
x double
y double
pen Pen
return void

AutoScale() public method

public AutoScale ( ) : void
return void

AutoScaleX() public method

public AutoScaleX ( ) : void
return void

AutoScaleY() public method

public AutoScaleY ( ) : void
return void

Dispose() protected method

使用されているリソースに後処理を実行します。
protected Dispose ( bool disposing ) : void
disposing bool
return void

DrawGraph() protected method

protected DrawGraph ( Graphics g, Entry entry ) : void
g Graphics
entry Entry
return void

Graph() public method

public Graph ( ) : System
return System

SetXAxis() public method

public SetXAxis ( double min, double max, int split, Font font, Brush brush ) : void
min double
max double
split int
font Font
brush Brush
return void

SetYAxis() public method

public SetYAxis ( double min, double max, int split, Font font, Brush brush ) : void
min double
max double
split int
font Font
brush Brush
return void