Page 1 of 1

Chart Titles

Posted: Fri Feb 15, 2013 9:53 pm
by jay@bplogix.com
Is it possible to add variables or database columns to a report title? It seems to only accept raw text.

Thanks

Re: Chart Titles

Posted: Mon Feb 18, 2013 6:43 am
by HighAley
Hello.

It's possible to do in the Before Print event of the Chart with next code:

Code: Select all

Chart1.Title.Text = Categories.CategoryName;
Thank you.