transpose tool

TeeChart for ActiveX, COM and ASP
Post Reply
mpaulson
Newbie
Newbie
Posts: 41
Joined: Fri Nov 15, 2002 12:00 am

transpose tool

Post by mpaulson » Tue Apr 08, 2008 8:45 pm

Hi:

I'm trying to use the transpose tool. However, when the function runs, the colors get reset from that which I assigned to (I think), default tchart values, and after some 10 or so datapoints, these colors revert to gray.

Is there any way to keep the colors I assigned when using the transpose tool?

Thanks,

Matt

mpaulson
Newbie
Newbie
Posts: 41
Joined: Fri Nov 15, 2002 12:00 am

Post by mpaulson » Tue Apr 08, 2008 8:47 pm

Also, once I transpose (back and forth once), markers start appearing where before there were none. Why?

Thanks,

Matt

mpaulson
Newbie
Newbie
Posts: 41
Joined: Fri Nov 15, 2002 12:00 am

Post by mpaulson » Wed Apr 09, 2008 3:20 pm

Hi:

More information: the series names get reset also.

Thanks,

Matt

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

Post by Yeray » Fri Apr 11, 2008 9:21 am

Hi Matt,

Yes, you are right. I've added the bug to the wish list (TV52012959) to be fixed in further releases.

One thing I've noticed is that you could conserve the color you set before if you set the color to the whole series, not only to the points. Here is the test:

Code: Select all

Private Sub Form_Load()
  TChart1.Tools.Add tcTransposeSeries
  TChart1.AddSeries scBar
  
'  TChart1.Series(0).Color = vbBlue 'uncomment this to save the series color
  
  TChart1.Series(0).Add 8, "", vbBlue
  TChart1.Series(0).Add 7, "", vbBlue
  TChart1.Series(0).Add 5, "", vbBlue
  TChart1.Series(0).Add 6, "", vbBlue
  TChart1.Series(0).Add 7, "", vbBlue
  

  TChart1.Tools.Items(0).asTransposeSeries.Transpose
  TChart1.Tools.Items(0).asTransposeSeries.Transpose
End Sub
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