Android CircularGauge Logarithmic axis
Posted: Thu May 15, 2014 10:37 am
Hi,
I’m using Teechart Java Android source code v3.2013.1219.
I’m using the following code to set a logarithmic axis on the circular gauge but it still gives me a linear scale.
Do I need to use something else to enable the logarithmic axis or the CircularGauge does not support such functionality?
Thank you in advance.
I’m using Teechart Java Android source code v3.2013.1219.
I’m using the following code to set a logarithmic axis on the circular gauge but it still gives me a linear scale.
Code: Select all
circularGauge = new CircularGauge(chart.getChart());
circularGauge.setMinimum(0);
circularGauge.setMaximum(512);
circularGauge.getVertAxis().setLogarithmic(true);
circularGauge.getVertAxis().setLogarithmicBase(2.0);
circularGauge.getVertAxis().setIncrement(1);
Thank you in advance.