Overload List
| # | Signature | Description |
|---|---|---|
| 1 | void DrawIt(TVec *A, System::UnicodeString Caption = "", bool PixelDownSample = false); | Automatically creates modal form with TChart and Series. |
| 2 | void DrawIt(TVec *A, int Width, int height); | Shows form with chart and fastline series showing vector values. |
| 3 | void DrawIt(const DewArray<TVec *> &A, const DewArray<System::UnicodeString> &SeriesCaptions, System::UnicodeString Caption = "", bool PixelDownSample = false); | Shows form with chart and array of fastline series - one for each vector in A array of vectors. |
| 4 | void DrawIt(TMtx *A, System::UnicodeString Caption = ""); | Shows form with chart and grid series showing matrix values. |
| 5 | void DrawIt(TVec *X, TVec *Y, System::UnicodeString Caption = "", bool PixelDownSample = false); | Shows form with chart and fastline series showing Y=Y(X). |
Overload 1: void DrawIt(TVec *A, System::UnicodeString Caption = "", bool PixelDownSample = false);
Automatically creates modal form with TChart and Series.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TVec * | |
| 2 | Caption = "" | System::UnicodeString | |
| 3 | PixelDownSample = false | bool |
Use DrawValues method to draw values to automatically created series. Shows form with chart and fastline series showing vector values. The Caption parameter defines modal form caption. If parameter PixelDownSample is True, then DrawIt will automatically use PixelDownSample method to reduce the number of points displayed for all series (much faster display).
Overload 2: void DrawIt(TVec *A, int Width, int height);
Shows form with chart and fastline series showing vector values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TVec * | |
| 2 | Width | int | |
| 3 | height | int |
Set the modal form ClientWidth and ClientHeight to Width and Height respectively.
Overload 3: void DrawIt(const DewArray<TVec *> &A, const DewArray<System::UnicodeString> &SeriesCaptions, System::UnicodeString Caption = "", bool PixelDownSample = false);
Shows form with chart and array of fastline series - one for each vector in A array of vectors.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | const DewArray<TVec *> & | |
| 2 | SeriesCaptions | const DewArray<System::UnicodeString> & | |
| 3 | Caption = "" | System::UnicodeString | |
| 4 | PixelDownSample = false | bool |
Sets series Title(s) to strings in SeriesCaptions. Set form caption to Caption string. If PixelDownSample paramter is True, then DrawIt will automatically use PixelDownSample method for all series to reduce the number of points displayed (much faster display).
Overload 4: void DrawIt(TMtx *A, System::UnicodeString Caption = "");
Shows form with chart and grid series showing matrix values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | A | TMtx * | |
| 2 | Caption = "" | System::UnicodeString |
The Caption parameter defines modal form caption.
Overload 5: void DrawIt(TVec *X, TVec *Y, System::UnicodeString Caption = "", bool PixelDownSample = false);
Shows form with chart and fastline series showing Y=Y(X).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVec * | |
| 2 | Y | TVec * | |
| 3 | Caption = "" | System::UnicodeString | |
| 4 | PixelDownSample = false | bool |
If PixelDownSample paramter is True, then DrawIt will automatically use PixelDownSample method for series to reduce the number of points displayed (much faster display).