Hi friends, I've done a graph with the UltraChart Control and I need to add Page Header and Page Footer, How Can I do it?
Any idea? Thanks for all
Regards...
Hello Eros,
I`m not sure what you mean with Page Header / Footer in the UltraChart, but maybe you are looking for the Titles in the UltraChart. If so you could use the code:
ultraChart1.TitleBottom.Text = "Here is the bottom"; ultraChart1.TitleBottom.FontColor = Color.BlueViolet; ultraChart1.TitleBottom.FontSizeBestFit = true; ultraChart1.TitleBottom.Extent = 50; ultraChart1.TitleTop.Text = "Here is the Top"; ultraChart1.TitleTop.FontSizeBestFit = true; ultraChart1.TitleTop.Extent = 50; ultraChart1.TitleTop.Orientation = TextOrientation.Horizontal; ultraChart1.TitleTop.HorizontalAlign = StringAlignment.Center;
ultraChart1.TitleBottom.Text = "Here is the bottom";
ultraChart1.TitleBottom.FontColor = Color.BlueViolet;
ultraChart1.TitleBottom.FontSizeBestFit = true;
ultraChart1.TitleBottom.Extent = 50;
ultraChart1.TitleTop.Text = "Here is the Top";
ultraChart1.TitleTop.FontSizeBestFit = true;
ultraChart1.TitleTop.Extent = 50;
ultraChart1.TitleTop.Orientation = TextOrientation.Horizontal;
ultraChart1.TitleTop.HorizontalAlign = StringAlignment.Center;
Please take a look at the attached sample for more details. Please let me know if you think that I misunderstood your question, or if you have other.
Regards
Hi, thanks for replying, I need to Add page Header an Page Footer like Microsoft Reporting Services, in Page Header I need to Add the Hour, and in the Page Footer I need to Add then Number from Page.
Thansks.
Regards.