Columns headers on export dialog data

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
user_bme
Newbie
Newbie
Posts: 4
Joined: Tue Mar 01, 2016 12:00 am

Columns headers on export dialog data

Post by user_bme » Tue Jun 28, 2016 3:34 pm

Hi,

When the user export format files (Text, excel,...) from export dialog data tab (using the funtion "TeeExport"), files show the column X with the caption "X" and the column Y with the caption "Y".

How can I change this captions?

Regards,

Àlex Reales

PD:

Version TeeChar Pro v2015.26.150901 32 bit VCL

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

Re: Columns headers on export dialog data

Post by Yeray » Wed Jun 29, 2016 9:50 am

Hello,

Try with this:

Code: Select all

  Series1.XValues.Name:='my x';
  Series1.YValues.Name:='my y values';
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

Post Reply