Trying to change the x, y, width, and height of the plot area:
ChartFrame plot = chart.PlotArea;
plot.Width -= 2000;
plot.Height -= 2000;
plot.X = 2000;
plot.Y = 2000;
The width and height are changing correctly, but the x and y position do not appear to change as the plot area remains in the top left corner.
Thanks.
Shaun