Page 1 of 1

Runtime Export has fewer options than Design Time

Posted: Sat May 05, 2007 8:42 pm
by 9241637
Why does my VCL 7.07 TeeChart have design time PDF as an export option, but at runtime, it is no longer available?

Posted: Sun May 06, 2007 7:23 am
by Marjan
Hi.

To have a pdf image format listed in the export dialog at runtime, you have to add TeePDFCanvas unit to the Uses section:

Code: Select all

Uses ..., TeePDFCanvas;
This will automatically add "PDF" to export format list. The same rule applies to other export formats (VLM = TeeVMLCanvas, PNG = TeePNG, ...)

Posted: Mon May 07, 2007 12:04 pm
by 9241637
Perfect! :D