TChart lite component features

396 Views Asked by At

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 ?

1

There are 1 best solutions below

0
On BEST ANSWER

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;