IBM / gantt-chart

IBM Gantt Chart Component, integrable in Vanilla, jQuery, or React Framework.
https://ibm.github.io/gantt-chart/packages/ibm-gantt-chart-docs/storybook
Apache License 2.0
215 stars 52 forks source link

Split Pane cutting off tree when names of resources are too long #60

Open delcacho opened 2 years ago

delcacho commented 2 years ago

Is there a way to customize the position of the split pane through configuration properties or calling a particular method? I can't seem to find out the proper way to do this. Thank you.

watery commented 1 year ago

If you know the width in advance, divider.pos does the job:

const config = {
  divider: {
   pos: 250
  },
  type: Gantt.type.ACTIVITY_CHART,
  data: {
    activities: {

It is used here:

https://github.com/IBM/gantt-chart/blob/f72eea31bd4208131050c7110c2e4e534a26dc55/packages/ibm-gantt-chart/src/jquery/split/split.js#L492-L504