Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1225
How to add Page Footer and Page Header to my Graph
posted

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...

Parents
No Data
Reply
  • 53790
    Suggested Answer
    posted

    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;

               

    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

    ScatterChartWithLineWithTwoLegendsHeaderFooter.zip
Children