add ui:show_grid

This commit is contained in:
Evgeny
2021-08-09 10:06:44 +03:00
parent 180a495416
commit 09d3017b18
2 changed files with 13 additions and 4 deletions

8
samples/chart-sample.lua Normal file
View File

@@ -0,0 +1,8 @@
function on_resume()
local points = {
{ 1, 1 },
{ 2, 2 },
{ 3, 1 },
}
ui:show_chart("Test", points, true, "Folded", "Copyright")
end