Incorrectly changed the order of the series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
acastro
Advanced
Posts: 204
Joined: Tue Oct 27, 2009 12:00 am

Incorrectly changed the order of the series

Post by acastro » Thu Aug 05, 2010 7:32 am

I uploaded a project example.

If you open chart editor, and you change the tipo of the "line1" serie from line to points. In the chart list line1 goes to the last position...

I'm using the last version of teechart2010 .net (yesterday)..

Thanks in advance,

Alain

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Incorrectly changed the order of the series

Post by Sandra » Fri Aug 06, 2010 11:10 am

Hello Alain,

I couldn't reproduce your problem using next sample code:

Code: Select all

 private void InitializeChart()
        {
            Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
            line1.FillSampleValues();
            Steema.TeeChart.Styles.Line line2 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
            line2.FillSampleValues();
 
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Steema.TeeChart.Styles.Series s = tChart1[0];
            Steema.TeeChart.Styles.Series.ChangeType(ref s, typeof(Steema.TeeChart.Styles.Points));
        }
Could you please, attach a simple example here, because we can reproduce exactly your problem? Moreover, if you already have uploaded your project in upload page, you can say us which are name of file, because we don't find it.

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

acastro
Advanced
Posts: 204
Joined: Tue Oct 27, 2009 12:00 am

Re: Incorrectly changed the order of the series

Post by acastro » Fri Aug 06, 2010 11:15 am

Sorry I thought I had attached the example.
Attachments
TestTeechart2010.zip
(26.98 KiB) Downloaded 440 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Incorrectly changed the order of the series

Post by Sandra » Mon Aug 09, 2010 9:05 am

Hello wakeup,


I could reproduce your problem using last version 2010. I have added your request in bug list with number [TF02015077]. We will try to fix it in next versions of TeeChart.Net


Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

acastro
Advanced
Posts: 204
Joined: Tue Oct 27, 2009 12:00 am

Re: Incorrectly changed the order of the series

Post by acastro » Fri Oct 01, 2010 8:50 am

I have just downloaded last revisión, and it seems not be solved.

Thanks

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Incorrectly changed the order of the series

Post by Sandra » Fri Oct 01, 2010 9:38 am

Hello wakeup,

Bug with number (TF02015077) still isn't fixed. I recommend you to be aware at this forum, our RSS news feed, twitter and facebook accounts for new release announcements and what's implemented on them.

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply