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
240
How to add additional labels to X, Y axis in WinChart?
posted

Totally love your toolset. Makes life easy! THANKS!

Question: If you go to http://help.infragistics.com/Help/NetAdvantage/NET/2008.1/CLR2.0/html/Chart_Creating_a_Composite_Chart_in_Code_Part_2_of_2.html , you can see the series label - Series A, Series B -- what if I want to write some additional info where the series label is?  For X and Y axis? How do I do that?

Thanks
CR

  • 17605
    Verified Answer
    posted

    I'm not sure if this is that you are asking for, but you can add titles near to the axes with:

    this.UltraChart1.TitleBottom.Visible = true;

    this.UltraChart1.TitleBottom.Text = "Title";

     

    this.UltraChart1.TitleLeft.Visible = true;

    this.UltraChart1.TitleLeft.Text = "Title";