ColorBand bug

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
neurosoft
Newbie
Newbie
Posts: 10
Joined: Fri May 17, 2013 12:00 am

ColorBand bug

Post by neurosoft » Tue Oct 08, 2013 8:35 am

Hello!

If I add ColorBand to TChart, then remove it, some dirt stays on the screen.

With ColorBand
1.png
1.png (6.29 KiB) Viewed 18675 times
After ColorBand removing
2.png
2.png (7.49 KiB) Viewed 18674 times
Here is application sample
TChartTest.zip
(9.98 KiB) Downloaded 1182 times

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

Re: ColorBand bug

Post by Sandra » Tue Oct 08, 2013 12:17 pm

Hello neurosoft,


I can reproduce your problem. I have added it in bug list report with number [TW16016733]. We will try to fix it to upcoming versions of TeeChartFor.Net. On the other hand, at the moment, you can use next workaround to solve your problem:

Code: Select all

        //TChart MyTChart;
        public MainWindow()
        {
            InitializeComponent();

            MyTChart.Aspect.View3D = false;
            MyTChart.Width = 400;
            MyTChart.Height = 300;
            MyTChart.Axes.Left.SetMinMax(0, 10);
            colorBand = new ColorBand();
            MyTChart.Tools.Add(colorBand);
            colorBand.Axis = MyTChart.Axes.Left;
            colorBand.Color = Colors.Green;
            colorBand.End = 7;
            colorBand.ResizeEnd = true;
            colorBand.ResizeStart = true;
            colorBand.Start = 3;
        }

        ColorBand colorBand;

        private void Button_Click(object sender, RoutedEventArgs e)
        {
          colorBand.EndLine.Active = false;
          colorBand.StartLine.Active = false;
          MyTChart.Tools.Remove(colorBand); 
        }
Could you confirm us if previous code works in your end?

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

neurosoft
Newbie
Newbie
Posts: 10
Joined: Fri May 17, 2013 12:00 am

Re: ColorBand bug

Post by neurosoft » Tue Oct 08, 2013 12:27 pm

Thank you, workaround works for me.

But I'll also wait for updated version.

neurosoft
Newbie
Newbie
Posts: 10
Joined: Fri May 17, 2013 12:00 am

Re: ColorBand bug

Post by neurosoft » Mon Nov 11, 2013 1:58 pm

Hello!

I've just tried TeeChartNET2013_4.1.2013.11080, but this bug [TW16016733] is not fixed.

Please explain when it will be removed?

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

Re: ColorBand bug

Post by Sandra » Mon Nov 11, 2013 4:34 pm

Hello neurosoft,

The bug isn't still fixed. We will try to fix it to upcoming versions of TeeChartFor.Net asap. 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

neurosoft
Newbie
Newbie
Posts: 3
Joined: Fri Mar 01, 2019 12:00 am

Re: ColorBand bug

Post by neurosoft » Wed Dec 11, 2019 6:07 am

Hello!

Just for now this bug is not fixed (Six years!). How long to wait?

Now we use version for WPF 4.2019.5.15

Regards,
Neurosoft company

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: ColorBand bug

Post by Christopher » Thu Dec 12, 2019 9:24 am

Hello,

okay, we've finally managed to fix this issue which you can see on our issue-tracker as id=340. We wish to apologize for the delay in the fix, and the fix will become available in the next build of TeeChart which is due before the end of this year.
Best Regards,
Christopher Ireland / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Instructions - How to post in this forum

Post Reply