Page 1 of 1

Rotate and LegendScrollbar

Posted: Thu Apr 09, 2009 8:34 am
by 13049497
Hello,

if i have Rotate and a LegendScrollbar tool within a chart the rotate tool overlaps the scrollbar functions.
Try to use the legend scrollbar:

Code: Select all

            tChart1.Aspect.Chart3DPercent = 75;
            tChart1.Tools.Add(new Steema.TeeChart.Tools.Rotate());
            tChart1.Tools.Add(new Steema.TeeChart.Tools.LegendScrollBar());

            for (int i = 0; i < 40; i++)
            {
                Steema.TeeChart.Styles.Bar ser = new Steema.TeeChart.Styles.Bar();
                ser.Title = i.ToString();
                ser.FillSampleValues(10);
                tChart1.Series.Add(ser);
            }
How can i avoid this?

Thanks!

Posted: Thu Apr 09, 2009 9:14 am
by yeray
Hi

Yes it seems that if you create a Rotate Tool and then a LegendScrollBar tool, the LegendScrollBar is undraggable.

Note that if you create the tools in the inverse other, LegendScrollBar and then Rotate tool, both tools work at the same time when you try to scroll the legend.

I've added this to the wish list to be fixed in further releases (TF02014075).