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.
Chartgrid text
Hi kebojax,
In the ActiveX version it seems that you only can change the first label text by:
On the other hand, in VCL there is the property ChartGrid1.RowHeights that would solve our problem as you could do something like following:
So, I've added this to be included in ActiveX version as soon as possible (TA05013071).
In the ActiveX version it seems that you only can change the first label text by:
Code: Select all
ChartGrid1.LabelHeader = "abcd"
Code: Select all
ChartGrid1.RowHeights[1] := 0;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |