Is it possible to disallow resources shifting columns in the "week" view of scheduler. I've tried grouping in the week view as well but it didn't grouped the reservations based on configurations. Also it added configurations name in the Y axis along with time on y-axis i.e per configuration with 24 hours time in y-axis.
The week view should have y-axis as 24 hour time and x-axis as 7 days range (which works fine but need vertical alignment for the same configuration reservations)
Green reservations should come in one column, and same should apply for red and yellow in attached file.
views: [
{
type: "day"
}, {
type: "week",
selected: true,
group: {
resources: ["Configurations"],
orientation: "vertical"
}
}, {
type: "agenda",
eventTemplate: $(reservationAgendaTemplate).html()
},
{
type: "timelineWeek",
columnWidth: 100,
majorTick: 1440,
group: {
resources: ["Configurations"],
orientation: "vertical"
}
}
],