Page 1 of 1

transpose tool

Posted: Tue Apr 08, 2008 8:45 pm
by 6928489
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

Posted: Tue Apr 08, 2008 8:47 pm
by 6928489
Also, once I transpose (back and forth once), markers start appearing where before there were none. Why?

Thanks,

Matt

Posted: Wed Apr 09, 2008 3:20 pm
by 6928489
Hi:

More information: the series names get reset also.

Thanks,

Matt

Posted: Fri Apr 11, 2008 9:21 am
by yeray
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