Skip to content
Yeray edited this page Mar 22, 2018 · 1 revision

Bounds and position

The default xy position of charts inside canvas is 0,0 (left-top corner), and the default size is the same as the associated canvas.

You can override them by changing the chart bounds property:

Chart1.bounds.x=50;
Chart1.bounds.y=20;
Chart1.bounds.width=200;
Chart1.bounds.height=150; 
Clone this wiki locally