Is there anyway to make paper width and paper height range from two values instead of being from 0 to set value. So paper width/height from (-1000,1000). I can extend the paper past the given width / height with
paper.fitToContent({
padding: 20,
minWidth: 2000,
minHeight: 2000,
maxHeight: 5000,
maxWidth: 5000,
allowNewOrigin: 'negative'
});
and save the new paper width / height in mongo but when reloading that paper width and height are 5000 but the cells dragged to the left or up are cut off because they do not fall within the 0-5000 it seems to me that paper 0,0 starts top left and goes to the right and downward. If I set a new origin on the graph to 1000,1000(center) it does not set the paper width / height to that origin they always go from 0,0 top left to right and bottom. Any recommendations would be great and my boss is not willing to pay for rappid given we are a small company not even in production yet so rappid is not an option, I know that rappid has a good way of doing this but sadly cant use it.
Thank you