Page 1 of 1

Chartgrid text

Posted: Wed Apr 15, 2009 7:12 pm
by 15051577
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.

Posted: Thu Apr 16, 2009 2:09 pm
by yeray
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).

Posted: Thu Apr 16, 2009 2:13 pm
by 15051577
Ok, thanks for your assistance.