Hi Team,
Good Morning!!!
var data = [
{
Id: 1,
Subject: 'Meeting 1',
StartTime: new Date(2021, 0, 15, 10, 0),
EndTime: new Date(2021, 0, 15, 10, 5),
},
{
Id: 2,
Subject: 'Meeting 2',
StartTime: new Date(2021, 0, 15, 10, 5),
EndTime: new Date(2021, 0, 15, 10, 10),
}
];
I have an appointment data, for example, The data is having two 5 mins appointments. When I give the timescale for 30 mins interval, It is not having good visibility. I don't want to change or reduce the time interval less than 30. But I want the appointment to be visible for the entire cell even it is a 1 minute appointment or 30 mins appointment. I need the appointment to occupy the entire cell for better readability.
Stackblitz link: https://stackblitz.com/edit/tbb4hw
Actual Result:
Expected result:
Regards,
Balaji