Open
Description
Hello,
I am exploring label-studio and trying to design the labeling interface.
I have two issues:
First, how to remove the superscript that are on each label?
Second, how to make the text to be labeled from right to left?
I think these are simple things but I have not found anything about them in the documnetation or the issues here.
this is my code:
<View>
<Header value="المقالة" style="direction: rtl; text-align: right;"></Header>
<Text name="text" value="$textlabel" style="direction: rtl; text-align: right;"></Text>
<Header value="Organization"></Header>
<Choices name="organization" toName="text" choice="single" showInLine="true">
<Choice value="0" showLabel="False"/>
<Choice value="1"/>
<Choice value="2"/>
<Choice value="3"/>
<Choice value="4"/>
<Choice value="5"/>
</Choices>
<Header value="Relevance"></Header>
<Choices name="relevance" toName="text" choice="single" showInLine="true">
<Choice value="0"/>
<Choice value="1"/>
<Choice value="2"/>
<Choice value="3"/>
<Choice value="4"/>
<Choice value="5"/>
</Choices>
</View>
Activity