@syncfusion/ej2-gantt
Version:
Essential JS 2 Gantt Component
42 lines (41 loc) • 1.14 kB
TypeScript
import { ChildProperty } from '@syncfusion/ej2-base';
import { SplitterView } from '../base/enum';
/**
* Configures splitter position and splitter bar.
*/
export declare class SplitterSettings extends ChildProperty<SplitterSettings> {
/**
* Defines splitter position at initial load, it accepts values in pixels.
*
* @default null
*/
position: string;
/**
* Defines splitter position with respect to column index value.
* If `columnIndex` set as `2` then splitter bar placed at third column of grid.
*
* @default -1
*/
columnIndex: number;
/**
* Defines splitter bar size.
*
* @default 4
*/
separatorSize: number;
/**
* Defines minimum width of Grid part, splitter can't be moved less than this value on grid side.
*
* @default null
*/
minimum: string;
/**
* Defines predefined view of Gantt.
* * `Default` - Shows grid side and side of Gantt.
* * `Grid` - Shows grid side alone in Gantt.
* * `Chart` - Shows chart side alone in Gantt.
*
* @default Default
*/
view: SplitterView;
}