|
<script type="text/javascript">
$("#resourceGantt").ejGantt({
dataSource: resourceGanttData,
allowColumnResize: true,
holidays:[{ day: "01/30/2017" }, { day: "01/31/2017", label: "Holiday Name" }, { day: "02/01/2017" }],
//..
});
</script> |
|
[HTML]
<ej-gantt id="resourceGantt"
[dataSource]="resourceGanttData"
[viewType]=viewType
weekendBackground="#F2F4F4"
//..
>
</ej-gantt> |
|
[HTML]
<ej-gantt id="resourceGantt"
[dataSource]="resourceGanttData"
[viewType]=viewType
[holidays]= "holidays"
//..
>
</ej-gantt>
[TS]
constructor() {
this.holidays = [{
day: "01/30/2017",
background: "yellowgreen "
},
{
day: "01/31/2017",
label: " Public holiday",
background: "yellowgreen "
},
{
day: "02/01/2017",
background: "yellowgreen "
}
]
}; |
|
|