mirror of
https://github.com/Rayerd/dfl.git
synced 2025-04-26 04:59:55 +03:00
UPDATE: TimeChartRenderer example
This commit is contained in:
parent
2f84718bd3
commit
38aa9c10f6
1 changed files with 4 additions and 4 deletions
|
@ -61,8 +61,8 @@ class MainForm : Form
|
||||||
_graph.hasZeroLine = true;
|
_graph.hasZeroLine = true;
|
||||||
_graph.backColor = Color.white;
|
_graph.backColor = Color.white;
|
||||||
|
|
||||||
_table = new CustomTableRenderer(csv, 10);
|
_table = new CustomTableRenderer(csv, 15);
|
||||||
_table.location = Point(50, 500);
|
_table.location = Point(600, 50);
|
||||||
_table.hasHeader = true;
|
_table.hasHeader = true;
|
||||||
_table.showHeader = true;
|
_table.showHeader = true;
|
||||||
_table.headerLine = true;
|
_table.headerLine = true;
|
||||||
|
@ -73,8 +73,8 @@ class MainForm : Form
|
||||||
{
|
{
|
||||||
if (_graph)
|
if (_graph)
|
||||||
_graph.draw(e.graphics);
|
_graph.draw(e.graphics);
|
||||||
// if (_table)
|
if (_table)
|
||||||
// _table.draw(e.graphics);
|
_table.draw(e.graphics);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue