I'm trying to use the LCD gauges in Jfxtras. Here's the code that I have to create the gauge:
final Gauge lcd = GaugeBuilder.create()
.gaugeType(GaugeBuilder.GaugeType.LCD)
.lcdDesign(LcdDesign.DARKAMBER)
.prefWidth(200)
.prefHeight(85)
.maxValue(9999)
.build();
I'm then setting the value of the gauge like this:
Platform.runLater( new Runnable() {
@Override
public void run() {
lcd.setValue(245);
}
});
No matter what I do, the maximum value displayed seems to always be 100. Is there any way for me to override this and display a different max value?