Hi Tom,
I see some text such as "<title>EXE: Summary for CURRENT ....". If the text is in the
chart title, it is likely the text is passed to ChartDirector from your code.
Is there a line of code that adds the title to the FinanceChart where the text is in a
variable, like:
c.addTitle(myTitle);
If the above is the case, I suspect the myTitle variable contains the page header
information, so they are displayed. To confirm if this is the case, please change the
above code to:
c.addTitle("ABC XYZ 123");
The chart should be changed to ABC XYZ 123, and the page header information should
not appear.
Another testing method is to use:
c.addTitle("ABC XYZ 123 " & myTitle, "Arial", 8);
With the above, there should be the text "ABC XYZ 123 " before your title. If the text
"ABC XYZ 123" occurs before the page header, it can confirm the page header is in the
myTitle variable.
Please kindly let me know what is the result.
Regards
Peter Kwan |