Page 1 of 1

Complete reset of a chart?

Posted: Wed Feb 15, 2006 3:31 pm
by 8439897
If I load a chart from file some properties of it are not resetet like the title and axis. The title for example has the font size, color, shadow attributes etc from the chart I had before.
Can I reset the hole chart?

Posted: Wed Feb 15, 2006 3:53 pm
by narcis
Hi CT,

This is not possible because a .tee file only stores the chart properties that have been changed so you should load the tee file into a "clean" chart. However, you may want to create an internal TChart and assign it to the chart where the tee file has to be loaded doing:

Code: Select all

Chart1.Assign(Chart2);
This will make Chart1 being "cleaned" and then you can load the .tee file to it.