Hi All,
How can we assign % values to Y -axis or X- axis instead of numeric or string values to IgDataChart/IgPieChart ?
Thanks in Advance,
Pavan
Hi,
If you provide a function for the formatLabel option on an axis, you can customize the formating of the labels. You should provide a function that takes the value to format, and return a string representing the formatted label. For example if you wanted to append a percent sign it might look like this:
...
formatLabel: function (value) { return value + "%" }