Is there any built-in support for internationaliza...
# juul-libraries
j
Is there any built-in support for internationalization in Krayon? More specifically, for right-to-left languages? I expect charts need to flipped entirely for those scenarios.
c
Nothing yet, but that’s an excellent call out.
If the mirroring you need is simple enough, you might be able to get away with applying a
Transform.Scale(horizontal = -1, pivotX = yourChartWidth)
at the top level. Text would need to un-scale itself when used.
j
That seems like a good start, if nothing else. Thanks. And thanks for adding the issue to the project đŸ˜„ I was just about to do that.