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
280
Column chart TitleLeft display
posted

Hello,

 I am using a column chart and I have to load the chart from different stored procedures based on the link clicked by the user and I was wondering if there is a way to display Title Left dynamically i.e. for one chart I want to display say "Month" for one SP and "Year" for another SP. How can I do that?

Thanks

Parents
  • 630
    posted

    You can do this with the code snippet below:

     

    UltraChart1.TitleLeft.Text = "Whatever!";

     

     You can also change other facets of TitleLeft which determined how it is displayed. You should just throw that code in when you load the chart. Good luck and I hope this helps!

     

    -Paul 

Reply Children