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
transpose tool
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:
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |