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?
ThanksCR
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";