Hi
1-How we ckeck that the title of Chart is empty .
2-How we get title of Chart.
Thanks & Regards
How to Check that Tee Chart Title is Empty and How Get Title
-
- Newbie
- Posts: 50
- Joined: Wed Apr 26, 2006 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Faizullah,
1. You can do it like this:
2. You can get it using TChart1.Header.Caption or TChart1.Header.Text.
1. You can do it like this:
Code: Select all
If TChart1.Header.Text.Count = 0 Then
'Put your code here
End If
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 |
-
- Newbie
- Posts: 50
- Joined: Wed Apr 26, 2006 12:00 am
Hi
2- You can get it using TChart1.Header.Caption or TChart1.Header.Text
Header not have "Caption" Property
TChart1.Header.Caption
And This is not a proper Sentex
TChart1.Header.Text
We can get Title in this way
Thanks With Regards
2- You can get it using TChart1.Header.Caption or TChart1.Header.Text
Header not have "Caption" Property
TChart1.Header.Caption
And This is not a proper Sentex
TChart1.Header.Text
We can get Title in this way
Code: Select all
TChart1.Header.Text.Item(0)