Changed baseStyleName to baseStyleNames.

development
Junsik Shim 2022-05-08 18:18:53 +09:00
parent 91d9c13286
commit 8f80956d0e
1 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ const Template = ({ label, ...args }) => {
// Adds cells to the model in a single step // Adds cells to the model in a single step
graph.batchUpdate(() => { graph.batchUpdate(() => {
const col1 = graph.insertVertex(parent, null, '', 0, 0, 120, 0, { const col1 = graph.insertVertex(parent, null, '', 0, 0, 120, 0, {
baseStyleName: 'column', baseStyleNames: ['column'],
}); });
const v1 = graph.insertVertex(col1, null, '1', 0, 0, 100, 30); const v1 = graph.insertVertex(col1, null, '1', 0, 0, 100, 30);
@ -98,7 +98,7 @@ const Template = ({ label, ...args }) => {
const v12 = graph.insertVertex(v1, null, '1.2', 0, 0, 80, 30); const v12 = graph.insertVertex(v1, null, '1.2', 0, 0, 80, 30);
const col2 = graph.insertVertex(parent, null, '', 0, 0, 120, 0, { const col2 = graph.insertVertex(parent, null, '', 0, 0, 120, 0, {
baseStyleName: 'column', baseStyleNames: ['column'],
}); });
const v2 = graph.insertVertex(col2, null, '2', 0, 0, 100, 30); const v2 = graph.insertVertex(col2, null, '2', 0, 0, 100, 30);