Open delcacho opened 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.
If you know the width in advance, divider.pos does the job:
divider.pos
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
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.