Page 1 of 1
See more value in chartgrid
Posted: Wed Jan 19, 2005 3:32 am
by 9235196
I connect chart to chartgrid.
How to see more digit value?
for example :
I wanna see 0.0001234 in the chart grid
Posted: Wed Jan 19, 2005 7:07 am
by Marjan
Hi, Herman.
ChartGrid strings are formatted according to connected series ValueFormat property. In case you need more digits, you can simply change this property and new formatted strings will be shown in chart grid. Example
Code: Select all
Series1->ValueFormat = "0.00000";
Series2->ValueFormat = "0.0e+00";