By rich dudley - Tuesday, October 10, 2017
Is there an option for adjusting the spacing between the label and axis? I would like to tighten it up to the axis as much as possible. Also there seems to be extra space on my YAxis label even when the alignment is set to TopCenter using the following. is this a bug? ((NLinearScaleConfigurator)chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator).LabelStyle.ContentAlignment = ContentAlignment.TopCenter;
|
By Nevron Support - Wednesday, October 11, 2017
Hi Rich, You need to set the Offset property of the LabelStyle:
NLinearScaleConfigurator scaleY = (NLinearScaleConfigurator)chart.Axis(StandardAxis.PrimaryY).ScaleConfigurator;scaleY.LabelStyle.Offset = new Nevron.GraphicsCore.NLength(0);
Let us know if you have any questions.
|
By rich dudley - Wednesday, October 11, 2017
Thank you, after applying this I was able to track down that extra spacing to Illustrator, not your image.
|
|