RemoveSeries Issue

TeeChart for ActiveX, COM and ASP
Guilz
Newbie
Newbie
Posts: 46
Joined: Mon Nov 13, 2006 12:00 am

RemoveSeries Issue

Post by Guilz » Wed Aug 18, 2010 1:25 pm

Hi,

I would like to know if RemoveSeries method is the only method to delete specific serie on Chart ?

When i use RemoveSeries(1) method on my chart (5 series available), 2 series are destroyed (index 1 and 2) !
delete_serie_0.jpg
delete_serie_0.jpg (144.41 KiB) Viewed 17749 times
delete_serie_1.jpg
delete_serie_1.jpg (57.46 KiB) Viewed 17735 times
If I use Delete Bouton available on TeeChart Editor Control it is working fine (only 1 serie is destroyed)

I expect I do something wrong but I don't see where is my mistake...

Could you help me ?

Thks a lot

Regards

Guilz

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

Re: RemoveSeries Issue

Post by Yeray » Thu Aug 19, 2010 3:40 pm

Hi Guilz,

Yes, this is a known bug already in the defect list to be fixed asap (TA05014784)
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

Guilz
Newbie
Newbie
Posts: 46
Joined: Mon Nov 13, 2006 12:00 am

Re: RemoveSeries Issue

Post by Guilz » Thu Aug 19, 2010 3:51 pm

Hi Yeray,

Thanks a lot for your response.

Regards,

Guilz

Guilz
Newbie
Newbie
Posts: 46
Joined: Mon Nov 13, 2006 12:00 am

Re: RemoveSeries Issue

Post by Guilz » Fri Aug 20, 2010 6:55 am

Yeray,

Any idea about the date of the next ActiveX release ?

Regards,

Guilz

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

Re: RemoveSeries Issue

Post by Yeray » Fri Aug 20, 2010 11:26 am

Hi Guilz,

I glad to announce that we've already fixed this problem (TA05014784).
I've sent the new ocx that includes the fix to the mail you have registered in this forums.
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

Guilz
Newbie
Newbie
Posts: 46
Joined: Mon Nov 13, 2006 12:00 am

Re: RemoveSeries Issue

Post by Guilz » Fri Aug 20, 2010 11:38 am

Thanks a lot Yeray - It is working properly.

As usual, the Steema support is excellent :wink:

Kind regards,

Guilz

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

Re: RemoveSeries Issue

Post by Yeray » Fri Aug 20, 2010 12:37 pm

Hi Guilz,

You're welcome! :D
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

TonyVSUK
Advanced
Posts: 163
Joined: Wed Mar 01, 2006 12:00 am

Re: RemoveSeries Issue

Post by TonyVSUK » Mon Aug 23, 2010 9:25 am

Yeray wrote:Hi Guilz,

I glad to announce that we've already fixed this problem (TA05014784).
I've sent the new ocx that includes the fix to the mail you have registered in this forums.
Can you send me the OCX as well please?

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

Re: RemoveSeries Issue

Post by Yeray » Mon Aug 23, 2010 3:36 pm

Hi Tony,

Just done!
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

Guilz
Newbie
Newbie
Posts: 46
Joined: Mon Nov 13, 2006 12:00 am

Re: RemoveSeries Issue with Bollinger

Post by Guilz » Fri Aug 27, 2010 6:53 am

Hi,

In my previous post about Bollinger you suggest to set property ShowInEditor to True to display it in Editor.

Look at this new issue: when trying to delete the first serie of bollinger series, Teechart component crash
bug_bollinger_00.jpg
bug_bollinger_00.jpg (131.1 KiB) Viewed 17647 times
At this step we delete Bollinger Band2. Working fine
Now, we will try to delete Bollinger Band1:
bug_bollinger_01.jpg
bug_bollinger_01.jpg (118.04 KiB) Viewed 17653 times
bug_bollinger_02.jpg
bug_bollinger_02.jpg (115.24 KiB) Viewed 17645 times
It is crashing with VB6 environment and with .Net.

Could you fix this issue ? Crash is never welcomed :lol:

Thanks for your help :D

Kind regards,

Guilz

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

Re: RemoveSeries Issue

Post by Yeray » Fri Aug 27, 2010 2:19 pm

Hi Guilz,

Is the purpose of making visible the internal series to destroy it? If you don't want it to be shown you can simply set it Active = false.

However, you are right that having a source series and a bollinger function the IDE crashes if you try to remove the two last series, so I've added it to the defect list to be fixed in future releases (TA05015119):

Code: Select all

  TChart1.Aspect.View3D = False
  
  TChart1.AddSeries scFastLine
  TChart1.AddSeries scFastLine
  
  TChart1.Series(0).Pen.Width = 2
  TChart1.Series(0).FillSampleValues 100
  
  TChart1.Series(1).SetFunction tfBollinger
  TChart1.Series(1).DataSource = TChart1.Series(0)

  TChart1.RemoveSeries TChart1.SeriesCount - 1
  TChart1.RemoveSeries TChart1.SeriesCount - 1
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

Guilz
Newbie
Newbie
Posts: 46
Joined: Mon Nov 13, 2006 12:00 am

Re: RemoveSeries Issue

Post by Guilz » Fri Aug 27, 2010 2:39 pm

Yeray wrote:Hi Guilz,

Is the purpose of making visible the internal series to destroy it? If you don't want it to be shown you can simply set it Active = false.
Yeray,

Using Active method on a serie does not destroy it...so it is more complicated to manage it by code because some series could be not active if user don't want to show them and some series are not active because they would like to destroy them ! Quite confusing...

If I look the last release date it was in 2010 of march...the release period is very long...Any idea for the next date ?

Guilz

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

Re: RemoveSeries Issue

Post by Yeray » Mon Aug 30, 2010 10:39 am

Hi Guliz,

We are working on the next ActtiveX version release that we hope can be published soon.
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

guilz2010
Newbie
Newbie
Posts: 63
Joined: Thu Nov 25, 2010 12:00 am
Location: Paris, France

Re: RemoveSeries Issue

Post by guilz2010 » Mon Dec 13, 2010 1:12 pm

Hi Steema Support Team,

I'm a bit disappointed to view that this issue (TA05015119) is still not fixed in v8 version (only critical bugs are now fixed in v8 :evil: ).
BUT it is NOT normal that this bug is present in v2010 version too and haven't been solved since august (6 months).

Shame on you Steema Team :twisted:

Guilz

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

Re: RemoveSeries Issue

Post by Yeray » Wed Dec 15, 2010 1:38 pm

Hi Guilz,

As you'll understand, we try to give more priority to a bug/request as more critical we find it is, or more customers are affected/interested.
I've incremented the priority of TA05015119.
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