Our state of the art Gantt chart


Post by Nitish Kurhadkar »

Is it possible to create a calendar view in Gantt chart


Post by mats »

Can you please show a screenshot of what you mean? We have this Calendar component available: https://bryntum.com/examples/calendar/


Post by Nitish Kurhadkar »

I am expecting something like this so, basically monthly view should look like this

Attachments
Untitled.png
Untitled.png (72.43 KiB) Viewed 382 times

Post by mats »

Right, this looks like our Calendar product (licensed separately). https://bryntum.com/products/calendar


Post by Nitish Kurhadkar »

can you please tell me how i can integrate that with gantt i just want monthly calendar view (UI)


Post by mats »

You purchase it, and load the data into it as per the docs + examples? If you open the 'basic' example you will see it takes almost no code to implement

const calendar = new Calendar({
    // Start life looking at this date
    date : new Date(2020, 9, 12),

// CrudManager arranges loading and syncing of data in JSON form from/to a web service
crudManager : {
    transport : {
        load : {
            url : 'data/data.json'
        }
    },
    autoLoad : true
},

appendTo : 'container'
});

Post Reply