how i add a title eg 'Annual Volatility' just below the axis labels? I am using scatter chart (if it makes any difference)
Thanks
Hi,
Maybe we have another two options.
Option 1: You could try to set property ultraChart1.Axis.X.Extent
Option 2: Maybe we could use FillSceneGraphe event and add Text primitive in desired location.
Let me know if you have any questions.
Regards
thanks for your reply Georgi. This could do the trick but still looks like a real chart title rather than an axis title.
I tried the titlebottom.margin properties to get it close to the X-axis but i had no success. Which property should bring the title closer to the x-axis labels?
Maybe one possible approach could be if you are using the properties:
ultraChart1.TitleBottom.HorizontalAlign =StringAlignment.Center;
ultraChart1.TitleBottom.Text ="This is my custom title";
Please let me know if you have any questions.