I need assistance rotating a list of words at an angle, specifically tilting only the characters: https://i.sstatic.net/r96Mt.png
Here is my code:
<svg width="2000" height="130">
<g *ngFor="let fruit of fruits">
<g>
<text [attr.x]="fruit.x" [attr.y]=50 dx=-10 dy=-7 rotate="-30 fruit.x 50">
{{fruit.name}}
</text>
</g>
</g>
</svg>
Any help on how to properly rotate all the words would be greatly appreciated.