-
Hello, is there a way to change the resizing ability for a specific shape or group. I can do this for all objects like this |
Beta Was this translation helpful? Give feedback.
Answered by
raminious
Jan 31, 2023
Replies: 1 comment 1 reply
-
const myRect = editor.shapes.rect.insert({
x: 200,
y: 200,
width: 100,
height: 80,
fill: "blue"
});
myRect.config = {
...myRect.config,
transformer: {
enabledAnchors: []
}
}; Working Example: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
aheadweb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Working Example:
https://codesandbox.io/s/pikaso-selectable-example-t1pnig