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
3550
Thousand separator for Y axis
posted

I want to have a thousand coma separator for values of the Y axis. e.g. 3,444,444

How to do?

  • 17559
    Verified Answer
    posted

    Hello drpoalim,

     

    You can format the labels by setting the ItemFormatString property for the labels of the Axes like this:

    this.UltraChart1.Axis.Y.Labels.ItemFormatString = String.Format("{0}", "<DATA_VALUE:000,000>");

     

    If you need any additional assistance in formatting the labels please feel free to ask.