Hi,
When exporting chart in XLS format, Series Names does not appear, it just indicates "Y".
Export in XLS format:
As you can see, Export in TXT format include Series Names. But this export doeas not work for me , because it exports all Null values( xls exports empty cells).
How can I get Series Names in XLS export?
Thanks,
Petar
Export Excel: Series Names
Re: Export Excel: Series Names
Hi Petar,
You have to set the Name property of the lists exported:
You have to set the Name property of the lists exported:
Code: Select all
TChart1.Series(0).XValues.Name = "AA"
TChart1.Series(0).YValues.Name = "BB"
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Export Excel: Series Names
Thanks a lot Yeray.
Petar
Petar