UPDATE: TimeChartRenderer example

This commit is contained in:
haru-s 2024-04-13 18:06:06 +09:00
parent 2f84718bd3
commit 38aa9c10f6

View file

@ -61,8 +61,8 @@ class MainForm : Form
_graph.hasZeroLine = true;
_graph.backColor = Color.white;
_table = new CustomTableRenderer(csv, 10);
_table.location = Point(50, 500);
_table = new CustomTableRenderer(csv, 15);
_table.location = Point(600, 50);
_table.hasHeader = true;
_table.showHeader = true;
_table.headerLine = true;
@ -73,8 +73,8 @@ class MainForm : Form
{
if (_graph)
_graph.draw(e.graphics);
// if (_table)
// _table.draw(e.graphics);
if (_table)
_table.draw(e.graphics);
}
}