Dynamically setting size and position of a Windows Chart

Is there a way to dynamically set the size of a chart and the position on the screen where the chart should be located?

1 Reply

MS Manimala S Syncfusion Team May 8, 2009 06:24 AM UTC

Hi Janewber,

We can set the location and size of the chart control dynamically. Here is the code to do that.

//Code

this.chartControl1.Location = new Point(166, 152);
this.chartControl1.Size = new Size(500, 500);

Kindly, let me know if it satisfies your requirement.

Thanks,
Manimala.

Loader.
Up arrow icon