Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wisdom-components
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ReactWeb5
wisdom-components
Commits
d0982168
Commit
d0982168
authored
Mar 28, 2023
by
李纪文
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 组态增加分组
parent
d7390d66
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
54 additions
and
0 deletions
+54
-0
HistoryModel.js
...xtend-components/EC_ConfigurationView/src/HistoryModel.js
+27
-0
RealModel.js
...s/extend-components/EC_ConfigurationView/src/RealModel.js
+27
-0
No files found.
packages/extend-components/EC_ConfigurationView/src/HistoryModel.js
View file @
d0982168
...
...
@@ -856,6 +856,33 @@ const ConfigurationView = (props) => {
},
);
/** **********************************分组模型************************************* */
myDiagram.groupTemplate =
('
groupCase
',
goJS(
go.Group,
'
Auto
',
{ ungroupable: true },
goJS(
go.Shape,
'
RoundedRectangle
', // surrounds everything
{
parameter1: 10,
fill: '
transparent
',
strokeWidth: 0,
stroke: '
transparent
',
},
),
goJS(
go.Panel,
'
Auto
', // position header above the subgraph
goJS(
go.Placeholder, // represents area for all member parts
{ background: '
transparent
' },
),
),
));
// 自定义矩形
go.Shape.defineFigureGenerator('
RoundedRectanglePlus
', (shape, w, h) => {
// this figure takes one parameter, the size of the corner
...
...
packages/extend-components/EC_ConfigurationView/src/RealModel.js
View file @
d0982168
...
...
@@ -1271,6 +1271,33 @@ const ConfigurationView = (props) => {
},
);
/** **********************************分组模型************************************* */
myDiagram.groupTemplate =
('
groupCase
',
goJS(
go.Group,
'
Auto
',
{ ungroupable: true },
goJS(
go.Shape,
'
RoundedRectangle
', // surrounds everything
{
parameter1: 10,
fill: '
transparent
',
strokeWidth: 0,
stroke: '
transparent
',
},
),
goJS(
go.Panel,
'
Auto
', // position header above the subgraph
goJS(
go.Placeholder, // represents area for all member parts
{ background: '
transparent
' },
),
),
));
// 自定义矩形
go.Shape.defineFigureGenerator('
RoundedRectanglePlus
', (shape, w, h) => {
// this figure takes one parameter, the size of the corner
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment