본문으로 건너뛰기

css

설명

선택 사항. Editbar에 사용자 지정 CSS 클래스를 적용합니다.

사용법

css?: string;

예제

const editor = new dhx.DiagramEditor("editor_container", {
type: "org",
view: {
// editbar: true, // 기본 Editbar 표시
// 또는 객체를 통해 Editbar 구성
editbar: {
css: "custom_css",
show: true,
width: 300,
controls: {...},
properties: {...}
}
}
});

변경 로그: v6.0에서 추가