Hi Robert,
Check out the All Examples\Panels\Chart\Aspect example. It shows how to configure the chart so that one unit on x equals exactly one unit on y. The following code extends on the example to create a chart which always has a proportion of 2:1 and a fixed range - [0:20] on x and [0:10] on y:
NCartesianChart chart = (NCartesianChart)nChartControl1.Charts[0];
// set aspect as 2:1
chart.Width = 20;
chart.Height = 10;
// use the aspect of the plot area (chart without axes)
chart.UsePlotAspect = true;
// fit axes in the box as well
chart.Fit2DAxisContent = true;
chart.Axis(StandardAxis.PrimaryX).View = new NRangeAxisView(new NRange1DD(0, 20), true, true);
chart.Axis(StandardAxis.PrimaryY).View = new NRangeAxisView(new NRange1DD(0, 10), true, true);
Hope this helps - let us know if you meet any problems.
Best Regards,
Nevron Support Team