Rotate and LegendScrollbar

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
AIS
Newbie
Newbie
Posts: 70
Joined: Wed Jun 25, 2008 12:00 am

Rotate and LegendScrollbar

Post by AIS » Thu Apr 09, 2009 8:34 am

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!

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Post by Yeray » Thu Apr 09, 2009 9:14 am

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).
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply