2. I'd like values of markers is double type( not int ) example : post 25% => post 25,3%
Dmitry

You can avoid marks overlapping as shown here. This is a TeeChart for .NET thread but the same applies to TeeChart for Java.1. I'd like markers are not blocked each other
You should be able to set that using PercentFormat:2. I'd like values of markers is double type( not int ) example : post 25% => post 25,3%
Code: Select all
Points points1 = new Points(tChart1.getChart());
points1.fillSampleValues();
points1.getMarks().setVisible(true);
points1.getMarks().setStyle(MarksStyle.LABELPERCENT);
points1.setPercentFormat("##0.00 '%'");
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
![]() ![]() ![]() ![]() ![]() ![]() |
Instructions - How to post in this forum |
Code: Select all
pie1.setAutoMarkPosition(true);
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
![]() ![]() ![]() ![]() ![]() ![]() |
Instructions - How to post in this forum |