I hope you can help me I have managed to change the font color, size, but I do not know how to put the annotation with underlined font, who could give me a clue please. I would like to get something like what is shown in the image I attached. Thanks in advance.
- Julio Olivos asked 8 years ago
- You must login to post comments
Many thanks for the prompt response, excellent service.
- Julio Olivos answered 8 years ago
- You must login to post comments
Hi Julio,
Have you tried to change tick label and title style for axis. You can specify custom Typeface when you create font style and then just assign it for axis. Also you can apply the same style for TextAnnotation. Here is a code sample:
Typeface typeface = Typeface.createFromFile(<path to font>);
final FontStyle style = new FontStyle(typeface, 20, Color.BLACK);
final IAxis axis = new NumericAxis(getActivity());
axis.setTitleStyle(style);
axis.setTickLabelStyle(style);
TextAnnotation annotation = new TextAnnotation(getActivity());
annotation.setFontStyle(style);
Is this suitable for your needs?
Best regards,
Yura
- Yura Khariton answered 8 years ago
- You must login to post comments
Please login first to submit.