Views: TimeLine
Reference: See image below
Library License: Commercial PRO
Issue:
We need to display some information about the user for each day as shown in the attached image (highlighted using green boxes)
Any help is appreciated.
Views: TimeLine
Reference: See image below
Library License: Commercial PRO
Issue:
We need to display some information about the user for each day as shown in the attached image (highlighted using green boxes)
Any help is appreciated.
Hello @Demo_V_Suite ,
There is no built-in template for timeline cells(for the bar
mode). But you can accomplish the requirement with the addMarkedTimespan
:
https://docs.dhtmlx.com/scheduler/limits.html
The thing that you have to do is to add a marked timespan for each section and place the required content on it(as `HTML).
Like the following fragment:
var sec1 = scheduler.addMarkedTimespan({
days: [0,1,2,3,4,5,6],
zones: "fullday",
css: "gray_section",
sections: { timeline: 1},
html: "<div class='bot-marker '> user 1</div>"
});
Here is a demo(html/code) tabs:
http://snippet.dhtmlx.com/5/34e700041
Kind regards,