본문으로 건너뛰기

static_background_cells

정보

이 기능은 PRO 에디션에서만 사용할 수 있습니다.

Description

static_background 모드에서 강조 표시된 셀의 렌더링을 활성화합니다

static_background_cells: boolean

Example

gantt.config.static_background_cells = false;

Default value: true

Details

This config is used in conjunction with the static_background config. When both static background and static_background_cells are enabled, gantt.config.static_background_cells = true(default), gantt will render both PNG grid and highlighted cells (ones that have CSS class assigned to them from timeline_cell_class template)

gantt.config.static_background = true;
gantt.config.static_background_cells = true;// enabled by default

If static_background is enabled and static_background_cells is disabled, gantt will render only PNG grid, as it worked in versions before 6.2.

gantt.config.static_background = true;
gantt.config.static_background_cells = false;

If static_background is disabled, static_background_cells has no effect at all.

gantt.config.static_background = false;

This config can be used to revert static_background to v6.1.

Change log

  • v6.2에서 v6.1과의 호환성을 위해 추가됨
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.