Copy Theme (one chart to another)

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
spietrek
Newbie
Newbie
Posts: 10
Joined: Wed Sep 22, 2004 4:00 am

Copy Theme (one chart to another)

Post by spietrek » Thu Apr 14, 2005 5:58 pm

How do I copy a theme from one chart to another?

Thanks.

SMP

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Thu Apr 14, 2005 9:14 pm

Hi,

the best way is by assigning one Chart to the other, because when you set a theme it's applied directly on the Chart and not saved.

Code: Select all

Chart2.Assign(Self.Chart1);

Post Reply