Before upgrading de version, this line runs correct
teechart1.Axis.Bottom.Labels.Item(.SeriesCount - 1).Text = "A" & Chr(13) & "B".
After upgrading the CR doesn't work
It's a bug? or this property has changed?
Problems with v7.1.0.3
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi tai,
It works fine for me here using v7.0.1.3 and this code:
Could you please try if it works fine at your end? If the problem persists, could you please send us a simple example project we can run "as-is" to reproduce the problem here.
You can post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
It works fine for me here using v7.0.1.3 and this code:
Code: Select all
Private Sub Form_Load()
With TChart1
.Series(0).FillSampleValues 10
.Axis.Bottom.Labels.Clear
For i = 0 To .Series(0).Count - 1
.Axis.Bottom.Labels.Add i, "Point " + CStr(i)
Next
.Axis.Bottom.Labels.Item(.SeriesCount - 1).Text = "A" & Chr(13) & "B"
End With
End Sub
You can post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |