Scale as small as possible

I’m trying to use the gantt chart and I want to put as much information as possible on the screen. To achieve this I want to make the column widths as small as possible like this:
|01|02|03|04|05|06|07|

instead of:

| 01 | 02 | 03 | 04 | 05 | 06 | 07 | …

I tried overriding the css for the gantt_table_cell and gantt_scale_cell but that gave me a totally misformed gantt chart.

Is there any easy way to achieve this?

Hi,
the best way is using ‘gantt.config’ object.
docs.dhtmlx.com/gantt/desktop__c … ation.html
In your case you may need next properties:
docs.dhtmlx.com/gantt/api__gantt … onfig.html
docs.dhtmlx.com/gantt/api__gantt … onfig.html
docs.dhtmlx.com/gantt/api__gantt … onfig.html
Sample:
docs.dhtmlx.com/gantt/snippet/2421df67
Also, I advise you to reduce the font size.

Wow thank you. That addresses my problem completely. I was looking through the api and didn’t see these properties. Sorry to bother you.