Pre loader

How to make all the text in the text attribute display vertically

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

TextAnnotation,Let me use this method, I want to make all the text in the text attribute display vertically, and find that there is no such function, NativeTextAnnotation has this function but does not support Chinese.I hope you can see that you can give a reply, thank you![enter image description here][1]

Version
3.2.516
Images
  • You must to post comments
0
0

Hi there

There is a related question here on how to rotate textannotation in scichart.js

Basing an answer off that, can you try this?

const rotatedText = new CustomAnnotation({ x1: 0, y1: 7});
rotatedText.svgString = `<svg class="scichart__text-annotation">
<text style="writing-mode: tb;">
    Vertical
</text>
</svg>`;

I’m going to create a task (feature-request) in our backlog for this as it’s been asked before.

Best regards
Andrew

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.