resources.dataColorField String
(default: "color")
The field of the resource data item which contains the resource color.
Example - set the resource data color field
<div id="gantt"></div>
<script>
$("#gantt").kendoGantt({
dataSource: [{
id: 0,
orderId: 0,
parentId: null,
title: "Task1",
start: new Date("2014/6/17 9:00"),
end: new Date("2014/7/01 11:00")
}],
resources: {
dataColorField: "key",
dataSource: [
{ id: 0, name: "Resource 1", key: "green" },
{ id: 1, name: "Resource 2", key: "#32cd32" }
]
},
assignments: {
dataSource: [
{ taskId: 0, resourceId: 1, value: 1 }
]
},
views: ["week"]
});
</script>