简体   繁体   中英

TChart lite component features

Does TChart lite component included in RAD Studio XE4 environment support GDI+ rendering or not ? Feature matrix doesnt tak about it.

http://www.steema.com/featurematrix/vcl

Searching in installation directory I found file VCLTee.TeeGDIPlus.hpp containing declaration of class TGDIPlusCanvas.

If yes then how to enable it ?

To activate GDIPlus in C++Builder applications, add the header to the .h:

#include <VclTee.TeeGDIPlus.hpp>

And then create the Canvas directly:

Chart1->Canvas = new TGDIPlusCanvas();

or through a variable:

TGDIPlusCanvas *myGDIPlus = new TGDIPlusCanvas();
Chart1->Canvas = myGDIPlus;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM