I've tried to change the distance between axis title and axis in Android TeeChart. I played a little bit around with
tChart.getAxes().getLeft().getTitle().setCustomSize();
tChart.getAxes().getBottom().getTitle().setCustomSize();
tChart.getAxes().getLeft().getLabels().setCustomSize();
tChart.getAxes().getBottom().getLabels().setCustomSize();
On the left Axis it works great, but the buttom Axis Title stays in the same Position. Anyone knows a solution?
Thanks.
I'm afraid there isn't an single property you can set to add extra space between the axis title and the axis.
The easier way I can think to achieve it is by adding some margin to the chart and draw the axis titles manually on the canvas. Ie:
Then, you can easily add more margin or move the titles.