Is it possible to remove the Week and day title rows from the graph as shown below? also the left side titles?
Hello,
For the weeks and days it's possible (Anyway right now the component doesn't have this feature), for the left column I don't know if it's possible (Requires exploration).
Thanks, Paulo Torres
Thank you for your quick response.
Hi Swathi,
Per la tua richiesta, anche se non ho ancora avuto modo di provarla personalmente, una possibile soluzione potrebbe essere quella di modificare direttamente il JSON del componente Gantt, poiché al momento non esiste un'opzione per rimuovere le righe della settimana e del giorno tramite l'interfaccia. Potresti apportare questa modifica nella configurazione `xAxis` in questo modo:
BEFORE:"xAxis: [{
currentDateIndicator: $parameters.IsCurrDateIndicator,
min: $parameters.StartDate.getTime(),
max: $parameters.EndDate.getTime() + ($parameters.EndDateMarginDays * day),
tickInterval: 1000 * 60 * 60 * 24 // 1 day
}, {
tickInterval: 1000 * 60 * 60 * 24 * 7 // 1 week
tickInterval: 1000 * 60 * 60 * 24 * 30, // 1 month
}],"AFTER:
"xAxis: [{
tickInterval: 1000 * 60 * 60 * 24 * 30 // 1 month
}],"
In theory, this change should remove the week and day rows from the graph, leaving only the monthly interval.
I hope this solution can be helpful!
Binod