clientIO / joint

A proven SVG-based JavaScript diagramming library powering exceptional UIs
https://jointjs.com
Mozilla Public License 2.0
4.51k stars 842 forks source link

refactor(dia.Paper)!: change the default connection point to 'boundary' #2489

Closed kumilingus closed 5 months ago

kumilingus commented 5 months ago

Description

Change the value of the defaultConnectionPoint option to boundary to make the diagrams more visually appealing by default.

Migration guide

To use the bbox connection point set the defaultConnectionPoint paper option as shown below:

new dia.Paper({
    /* ... */
    defaultConnectionPoint: { name: 'bbox' }
});