How to convert the value of Progress into a percentage?

I’d like to be able to show what percent it’s at in the columns. How would I be able to do that?

Hello,

Please use this way to convert value to percentage:

Math.round(task.progress*100)

Sample:
docs.dhtmlx.com/gantt/samples/0 … _text.html

Thanks!