Hi Antonios,
Thanks for contacting Syncfusion support.
In Gantt currently it is possible to render the Gantt schedule only with standard date format strings and it is not possible to render schedule with custom formats. Hence we have logged a feature report regarding this. A support incident has been created under your account to track the status of this requirement. Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=/support/directtrac/incidents
Please let us know if you require further assistance on this.
Regards,
Mahalakshmi K.
No |
Queries |
Syncfusion Comments |
1
|
When will the new JavaScript based Gantt(EJ2-Gantt) version be available.
|
We have already launched our Gantt component in EJ2 at preview state. The main version of the Gantt will be release in our upcoming Volume 3, 2019 main release, which is expected to be rolled out at the mid of October, 2019.
|
2
|
Does it include all the functionality of the previous Gantt(EJ1-Gantt) - I would need to be sure about this before switching.
|
Most of the features available in EJ1 Gantt are available in EJ2 Gantt. Please find the below online sample and documentation link.
|
@(Html.EJS().Gantt("DefaultFunctionalities").DataSource((IEnumerable<object>)ViewBag.DataSource).Height("450px").HighlightWeekends(true)
.TimelineSettings(ts => ts.TopTier(tt => tt.Unit(Syncfusion.EJ2.Gantt.TimelineViewMode.Month))
.BottomTier(bt => bt.Unit(Syncfusion.EJ2.Gantt.TimelineViewMode.Week).Formatter("formatter")))
.Render()
)
<script>
function formatter(date) {
var start = new Date(date.getFullYear(), 0, 1);
var dayOfYear = Math.floor((date - start) / 86400000); //86400000 = hour * minutes * seconds * ms
return (Math.ceil(dayOfYear / 7) + 1);
}
</script> |