Hi,
I am creating a Bar Chart and setting its series label. But the series label text is somehow truncated.
The code and the generated chart is as follows:
NumericSeries numSeries = new NumericSeries(); numSeries.Points.Add(new NumericDataPoint(Convert.ToDouble(45), "Pass", false));numSeries.Points.Add(new NumericDataPoint(Convert.ToDouble(75), "Unknown", false));numSeries.Points.Add(new NumericDataPoint(Convert.ToDouble(45), "Fail", false));numSeries.Label = "Y Axis Text";myInfraChart.Series.Add(numSeries);
I want my series label text to always appear even if text labels are very large (they will be trunctaed in that case) and even when chart is 3D.
Thanks.
Sounds like you have some existing layout behaviors in your Y axis series labels. It doesn't look like you need any of them for this chart.
Hi Max,
The code I have posted above is the only one I have on my page and it still is truncating series label. But when I use StackColumn chart, I get the label correctly. I agree its a bit weird.