How to superscript/subscript text in a shape/connector in aspose diagram?

how to superscript/subscript text in a shape/connector in aspose diagram using c#?
image.png (11.2 KB)

@usarigamala
Please try this sample code to set shape’s char:
Aspose.Diagram.Char ch = shape.Chars[0];
ch.Pos.Value = PosValue.Subscript;
ch.Pos.Value = PosValue.Superscript;

Thanks.

1 Like