Chartgrid text

TeeChart for ActiveX, COM and ASP
Post Reply
kebojax
Newbie
Newbie
Posts: 2
Joined: Tue Jan 27, 2009 12:00 am

Chartgrid text

Post by kebojax » Wed Apr 15, 2009 7:12 pm

I searched the forum but couldn't find anything on this.
Is there someway to change the default text that appears on a chartgrid?
I've linked the chartgrid to a chart and it's displaying the data, but there's a line between the legend and the data that has '# Text Bar Bar ...'. Is there some way to access/change that text or to remove that line?

Thanks.

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

Post by Yeray » Thu Apr 16, 2009 2:09 pm

Hi kebojax,

In the ActiveX version it seems that you only can change the first label text by:

Code: Select all

ChartGrid1.LabelHeader = "abcd"
On the other hand, in VCL there is the property ChartGrid1.RowHeights that would solve our problem as you could do something like following:

Code: Select all

ChartGrid1.RowHeights[1] := 0;
So, I've added this to be included in ActiveX version as soon as possible (TA05013071).
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

kebojax
Newbie
Newbie
Posts: 2
Joined: Tue Jan 27, 2009 12:00 am

Post by kebojax » Thu Apr 16, 2009 2:13 pm

Ok, thanks for your assistance.

Post Reply