Cross box in TTree

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
agholor
Newbie
Newbie
Posts: 7
Joined: Thu Nov 06, 2014 12:00 am

Cross box in TTree

Post by agholor » Wed Apr 01, 2015 9:35 am

Hi

I have recently upgraded from version 8 to 2014 and I have found that the crossbox that appears in a TTree seems to be blurry. in version 8 the crosboss in the TTree component looked like a sharp +
However now it is hard to even see it is +, is there some new option I can change to get the crossBox to be sharp?
Attachments
Untitled.jpg
Untitled.jpg (13.33 KiB) Viewed 6154 times

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

Re: Cross box in TTree

Post by Yeray » Wed Apr 01, 2015 12:10 pm

Hello,

This is because the default Canvas changed to GDIPlus.
  • To change the Canvas in the current TTree, you have two options:
    • Open the dfm and change this:

      Code: Select all

      DefaultCanvas = 'TGDIPlusCanvas'
      for this:

      Code: Select all

      DefaultCanvas = ''
    • Call this at runtime:

      Code: Select all

      uses TeCanvas;
      
      procedure TForm1.FormCreate(Sender: TObject);
      begin
        Tree1.Canvas:=TTeeCanvas3D.Create;
      end;
  • To change the default Canvas to be used in the next Trees and Charts you'll create, you can drop a temporal TChart into a form, follow the instructions here, and then you can remove the TChart.
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

agholor
Newbie
Newbie
Posts: 7
Joined: Thu Nov 06, 2014 12:00 am

Re: Cross box in TTree

Post by agholor » Wed Apr 01, 2015 4:09 pm

Thanks for that. I had been looking for that for awhile. I have also found that the cross still doesn't look right so I changed tmpExtra to be 1 in the method TTreeNodeCrossBox.Draw(...) and it all looks like it did before.

Post Reply