-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Followers not in sync with the leader's updates. #69
Comments
Creating a PR for the same. |
Extending the issue: In the text created and stored under the variable named 't' in above comment, doing the operations:
do not update the text-bounding rectangular element. So it should be internally managed by the graphics engine RedRaphael that if the element has follower element, operating on the leader element should ideally be followed by its followers. |
Creating a PR for the extension of the issue discussed in the above comment. |
Create a text, e.g.
t = paper.text().attr({x:100,y:100, text: "Ayan", 'text-bound': ["#ff0000","#00ff00",2,5,10]});
Now keep on applying for a repeated times
t.attr({transform: 't10,10'});
After some transformations, text although remains intact, the bounding-box(i.e. the text-bound) gets shifted with no capping.
The text was updated successfully, but these errors were encountered: