Page 1 of 1
Stacked column height and series labels in chart
Posted: Fri Oct 16, 2015 4:53 am
by hellenschmidt
Hi,
we have two problems with a chart using stacked columns:
1. the series labels overlap, is there any possibility to prevent this?
2. the chart height is never used, there is always an unused area on top of the stacked columns. How can I enlarge the stacked columns? This may also help to prevent label overlap.
Re: Stacked column height and series labels in chart
Posted: Fri Oct 16, 2015 8:49 am
by HighAley
Hello, Hellen.
To remove the free space you could set the Range of Y Axis in chart settings. Chart editor - Area - Y Axis - Range.
Unfortunately. there is no way to prevent intersection of labels of small values.
Thank you.
Re: Stacked column height and series labels in chart
Posted: Fri Oct 16, 2015 9:04 am
by hellenschmidt
Hi Aleksey,
thanks for your response. The Range of Y-Axis is set to Auto, I cannot change this to a manual range because the data is variable. Why does "Auto" not use the complete range?
Are there any plans to implement intersection, this is a heavy problem for our customer (you do not want to present this result to your chief).
Re: Stacked column height and series labels in chart
Posted: Fri Oct 16, 2015 11:03 am
by HighAley
Hello.
It's possible yo change Range dynamically from Before print event of the chart.
Code: Select all
((Stimulsoft.Report.Chart.StiAxis)(((Stimulsoft.Report.Chart.StiAxisArea)(Chart1.Area)).YAxis)).Range.Auto = false;
((Stimulsoft.Report.Chart.StiAxis)(((Stimulsoft.Report.Chart.StiAxisArea)(Chart1.Area)).YAxis)).Range.Maximum = 4;
The Series labels are shown as is. Unfortunately, we can't change its behavior.
Thank you.