I require some direction to incorporate gauge in J2ME which allows me to configure its minimum and maximum value, labels etc.
Currently, this is my gauge code:
levelGauge = new Gauge("Level", true, 12, valX - 16);
I am setting the maximum value as 12 (hence it becomes 0 to 12) but I need it to be from 16 to 28. The labels appear between 0 to 12 on movement.
Note I want the look and feel of the gauge which is ranging from 0 to 12 but should be from 16 to 28 actually. I do not want the current level of the gauge to go below 16 at any point of time.