Skip to content

Commit ac17fec

Browse files
authored
Merge pull request #283 from graphieros/next
Improvement - VueUiFlow - Add config attribute to curve node links
2 parents c17ee64 + f155ce3 commit ac17fec

File tree

5 files changed

+179
-119
lines changed

5 files changed

+179
-119
lines changed

TestingArena/ArenaVueUiFlow.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,6 @@ const model = createModel([
175175
NUMBER("style.chart.padding.left", { def: 12, min: 0, max: 100 }),
176176
177177
NUMBER("userOptions.print.scale", { def: 2, min: 1, max: 5 }),
178-
CHECKBOX("userOptions.print.allowTaint", { def: true }),
179-
CHECKBOX("userOptions.print.useCORS", { def: true }),
180-
COLOR("userOptions.print.backgroundColor", { def: "#FFFFFF" }),
181178
182179
TEXT("style.fontFamily", { def: "inherit" }),
183180
COLOR("style.chart.backgroundColor", { def: "#FFFFFF" }),
@@ -198,16 +195,20 @@ const model = createModel([
198195
NUMBER("style.chart.nodes.minHeight", { def: 20, min: 5, max: 100 }),
199196
NUMBER("style.chart.nodes.width", { def: 40, min: 10, max: 100 }),
200197
NUMBER("style.chart.nodes.labels.fontSize", { def: 8, min: 8, max: 42 }),
198+
199+
CHECKBOX("style.chart.nodes.labels.show", { def: true }),
200+
CHECKBOX("style.chart.nodes.labels.showValue", { def: true }),
201201
CHECKBOX("style.chart.nodes.labels.abbreviation.use", { def: true }),
202202
NUMBER("style.chart.nodes.labels.abbreviation.length", { def: 3, min: 1, max: 12 }),
203+
203204
COLOR("style.chart.nodes.stroke", { def: "#FFFFFF" }),
204205
NUMBER("style.chart.nodes.strokeWidth", { def: 1, min: 0, max: 12 }),
205206
NUMBER("style.chart.nodes.borderRadius", { def: 3, min: 0, max: 12 }),
206207
207208
NUMBER("style.chart.links.opacity", { def: 0.8, min: 0, max: 1, step: 0.1 }),
208209
COLOR("style.chart.links.stroke", { def: "#FFFFFF" }),
209210
NUMBER("style.chart.links.strokeWidth", { def: 1, min: 0, max: 12 }),
210-
NUMBER("style.chart.links.width", { def: 200, min: 40, max: 300 }),
211+
CHECKBOX("style.chart.links.smooth", { def: true }),
211212
212213
CHECKBOX("table.show", { def: false }),
213214
CHECKBOX("table.useDialog", { def: true })

manual-testing/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)