Many thanks to the authors of the GiCentre libraries. These pieces of functionality are really wunderfull.
Just setting my first steps in creating my android apps and it works marvelous.
However, I encounter the following inconsistency.
The labels of the value-axis of a BarChart of displayed left of the axis in Java-mode and right of the axis in Android-mode (both in emulator and on real device). Tried all kind of different things, but can't explain nor resolve.
This is my code
barChart = new BarChart(this);
barChart.setData(float(bar_data));
barChart.setValueFormat("00,00");
barChart.showValueAxis(true);
barChart.showCategoryAxis(false);
and this is how it looks in Java and Android respectively.