|
Group: Administrators
Posts: 12,
Visits: 173
|
Hi Manal, There is no setting to automatically manage the aspect / range of the chart however you can control both the aspect and the view range of the axis programmatically. The following code shows how to explicitly assign a range to the axis:
chart.Axis(StandardAxis.PrimaryX).View = new NRangeAxisView(new NRange1DD(0, 100), true, true);
Best Regards, Nevron Support Team
|