percentComplete String|Number|Object
The completion percentage of the task.
Example - get the percentComplete field of a task
<script>
var parent = new kendo.data.GanttTask({
id: 1,
title: "Parent",
percentComplete: 0.55,
start: new Date("2014/6/17 9:00"),
end: new Date("2014/6/17 11:00")
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(parent.percentComplete); // outputs "0.55"
</script>