Profile Picture

How to set chart size respectively for width and height ?

Posted By CHANGMIN KIM 5 Years Ago

How to set chart size respectively for width and height ?

Author
Message
CHANGMIN KIM
Question Posted 5 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)

Group: Forum Members
Last Active: 4 Years Ago
Posts: 10, Visits: 25
Hello Team,

I want to set chart size like below :

NChart chart = nChartControl1.Charts[0];
chart.Size = new NSizeL(new NLength(20, NRelativeUnit.ParentPercentage), new NLength(80, NRelativeUnit.ParentPercentage));


But, The width and length shrinks at the same time.(even though I really want my chart to be vertically long)
How can I make my chart be sized respectively for width and height ?

Nevron Support
Posted 5 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 3,039, Visits: 3,746
Hi Kim,
You also need to set the chart bounds mode to Stretch:
chart.BoundsMode = Nevron.GraphicsCore.BoundsMode.Stretch;
as by default the chart will try to preserve the specified aspect ratio. 
Let us know if you meet any problems or have any questions.

Best Regards,
Nevron Support Team





Similar Topics


Reading This Topic