Discuss anything related to web development but no technical support questions


Post by Dev@2609 »

Hi Team,
In the screenshot attached,
I am trying out the demo gantt product and I am not able to plot multiple events on 1 row.

I want to display more than 1 event on the gant scheduler and drag and drop them horizontally and vertically.

Currently I can only drag and drop them horizontally, not accross the columns.
Assistance would be appreciated.
Attachments
Bryntum_Test_query.png
Bryntum_Test_query.png (78.19 KiB) Viewed 3137 times

Post by mats »

You're looking at the wrong product. You should look at Scheduler, not Gantt. https://www.bryntum.com/products/scheduler/

Post by Dev@2609 »

Hi Matt,

I am using the the free trial product (gantt-1.2.2-trial\examples\angular\advanced).

Is there any separate free trial for the scheduler?

Is it possible to combine the features of these two products?

Thanks!

Post by Maxim Gorkovsky »

Yes, there is a separate trial for scheduler, you can find it here.
What features do you want to combine? Here are lists of scheduler features and gantt features.

Post by Dev@2609 »

Team,
In the above screenshot attached
I want to display the event name on the bar itself in the gant chart.

Any suggestions would help.

Post by mats »

Please decide first - do you want to use our Gantt chart or Scheduler chart? All our Scheduler demos shows name in the bar: https://bryntum.com/examples/scheduler/basic

Post by Dev@2609 »

Basically i need a combination of both gant and scheduler. I need to be able to drag and drop events both horizontally and vertically along with the row in the side bar

In gant product, Drag and Drop is only possible horizontally with name of event on left side of bar

In scheduler product, Drag and Drop is both horizontally and vertically,with name on the bar but I cant drag and Drop the left side locked panel row.

So I would say I need to merge features of these 2 products.

Thanks

Post by mats »

Ok you'll have to settle on one of those :)
In scheduler product, Drag and Drop is both horizontally and vertically,with name on the bar but I cant drag and Drop the left side locked panel row.
Yes you can drag rows in locked panel. Please see https://bryntum.com/docs/scheduler/#Grid/feature/RowReorder

Post by Dev@2609 »

Thanks Matt. Is there any way to display name of event on bar itself in the gantt product?

Post by Maxim Gorkovsky »

Try this config: https://bryntum.com/docs/gantt/#Gantt/view/GanttBase#config-taskRenderer
taskRenderer : ({ taskRecord }) => {
        return taskRecord.name;
    }
    

Post Reply