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
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
Thanks for the reply Paul. but my question is....I am using just one chart, this chart brings back different data from a stored procedure depending on what the user selects from 3 dropdownlists. Now, the chart is being generated dynamically everytime there is a new user selection, similarly, is there a way to display the title left dynamically for each user selection since each selection brings back different data for the chart to display.
Also, to display series labels on x-axis, is there a custom format to display just what is specified as opposed to repeating values.