Gap between border and chart
Posted: Fri Nov 24, 2017 12:00 pm
Hello guys,
I have problem with area, that is creating between border and chart itself.
With one chart line it is okay, but with more custom axis in the chart, distance between border and chart itself increases.
Thank you for your help.
Peter
I have problem with area, that is creating between border and chart itself.
With one chart line it is okay, but with more custom axis in the chart, distance between border and chart itself increases.
Code: Select all
Axis axis2 = new Axis(false, false, ch1);
ch1.Axes.Custom.Add(axis2);
zmesP.CustomVertAxis = axis2;
Axis axis1 = new Axis(false, false, ch1);
ch1.Axes.Custom.Add(axis1);
zp.CustomVertAxis = axis1;
axis1.StartPosition = 0;
axis1.EndPosition = 22;
axis2.StartPosition = 25;
axis2.EndPosition = 47;
Peter