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
430
TitleTop is displayed inside the chart
posted

My TitleTop is being displayed inside the chart.  I need to have the title not in the chart.

Picture = 1,000 words.

 

Parents
No Data
Reply
  • 12480
    Suggested Answer
    Offline posted

    That looks like a composite chart to me. I tested by created a composite chart with some basic data. Sure enough, the title showed up on the grid just like in your picture.

    Composite charts give you control over the location and size of the major elements of the chart, and it's simple to set up.

    ultraChart1.CompositeChart.ChartAreas[1].Bounds =

     

    new System.Drawing.Rectangle(30, 20, 450, 300);

    The above line of code will tell the chart control exactly where to place the chart area at index 1. You can tweak the actual values to get it just where you want and how large you want it to be.

    Please let me know if you have any questions.

Children
No Data