gambas-source-code/app/examples/Drawing/Chart/.src/FormChart.form
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

32 lines
646 B
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,72,51)
Background = &HFFEFBF&
Text = ("Example to make a Bar Chart")
Resizable = False
{ bg PictureBox
MoveScaled(1,1,70.1667,43.1667)
Background = &HFFFFFF&
Border = Border.Plain
}
{ drwChart DrawingArea
MoveScaled(2,2,69,41)
Background = &HFFFFFF&
Cached = True
}
{ btnClose Button
MoveScaled(56,45,15,5)
Text = ("&Close")
}
{ btnAbout Button
MoveScaled(39.6667,45,15,5)
Text = ("&About")
Picture = Picture["graph.png"]
}
{ TextLabel1 TextLabel
MoveScaled(2,2,4,3.5)
Background = &HFFFFFF&
Text = ("(%)")
}
}