labels disappear
Posted: Fri Jun 21, 2013 10:51 am
Dear,
I have made a TeeChart with the following code:
this results in the chart you can see in the attached screenshot.
Why can I only see the labels number 1, 3, 5 and 7? I would expect to see all the labels, as I rotated them.
thanks in advance,
Marijke Van Bergen
OM Partners
I have made a TeeChart with the following code:
Code: Select all
chartToTest.Aspect.View3D = false;
Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(chartToTest.Chart);
line.Add(1, 45, "Label of first item");
line.Add(2, 50, "Label of second item");
line.Add(3, 60, "Label of third item");
line.Add(4, 70, "Label of item 4");
line.Add(5, 45, "Label of item 5");
line.Add(6, 35, "Label of item 6");
line.Add(7, 25, "Label of item 7");
line.Add(8, 50, "Label of item 8");
line.Pointer.Visible = true;
chartToTest.Axes.Bottom.Labels.Angle = 45;
Why can I only see the labels number 1, 3, 5 and 7? I would expect to see all the labels, as I rotated them.
thanks in advance,
Marijke Van Bergen
OM Partners