05-06-2019 06:31
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

05-06-2019 06:31
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
Hello,
I’m getting this error when I’m trying to rotate the elements like this:
<circle id="o1" class="oval" fill="#FF7F00" transform="rotate(30)" ></circle>
I’m aware that circle is always round, no matter how you rotate it bit with fixed origin and some offset it does make sense 😉
Answered! Go to the Best Answer.

Accepted Solutions
05-07-2019 05:13
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

05-07-2019 05:13
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
- Who Voted for this post?
Wrapping the circle in group fixes this issue:
<g class="oval" transform="rotate(30)"> <circle id="o1" fill="#FF7F00" ></circle> </g>
05-07-2019 05:13
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

05-07-2019 05:13
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
- Who Voted for this post?
Wrapping the circle in group fixes this issue:
<g class="oval" transform="rotate(30)"> <circle id="o1" fill="#FF7F00" ></circle> </g>
