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
145
Labels in WinChart Data
posted

Hi,

I build a graphics using a winchart and i'd like to know if is possible include other information in labels than just the value.

Por instance instead of just a number like 1234, i'd like that in same position appear  TEXT02: 1234.

 

Thanks in advance.

Miguel Jeronimo

Parents
No Data
Reply
  • 53790
    posted

    Hello Miguel,

    Yes, it is possible.  You could try to used for example:

    // Tooltip

    this.ultraChart1.Tooltips.FormatString = "<ITEM_LABEL>: <DATA_VALUE:#> (<PERCENT_VALUE:#0.00>%)";

     

     // Labels

    this.ultraChart1.PieChart3D.Labels.Format = PieLabelFormat.Custom;

    this.ultraChart1.PieChart3D.Labels.FormatString = "<ITEM_LABEL>: <DATA_VALUE:#> (<PERCENT_VALUE:#0.00>%)";

    Let me know if you have any questions.

    Regards

     

Children