See more value in chartgrid

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Herman
Newbie
Newbie
Posts: 56
Joined: Tue Dec 07, 2004 5:00 am

See more value in chartgrid

Post by Herman » Wed Jan 19, 2005 3:32 am

I connect chart to chartgrid.
How to see more digit value?
for example :
I wanna see 0.0001234 in the chart grid

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Wed Jan 19, 2005 7:07 am

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";
Marjan Slatinek,
http://www.steema.com

Post Reply