}
}
};
this.dialCenterFillProperty = new SimpleObjectProperty<Paint>(
this.indicatorType == IndicatorType.KNOB ?
new RadialGradient(0, 0, this.centerX, this.centerY,
this.dialCenterOuterRadius, false, CycleMethod.NO_CYCLE,
new Stop(0, Color.DARKGRAY.darker()), new Stop(0.8d, Color.DARKGRAY.darker()),
new Stop(0.85d, Color.LIGHTGRAY), new Stop(0.97d, Color.DARKGRAY.darker()))
: Color.BLACK);
this.minorTickMarkFillProperty = new SimpleObjectProperty<Paint>(Color.GRAY.brighter());
this.majorTickMarkFillProperty = new SimpleObjectProperty<Paint>(Color.WHITE);
this.tickMarkLabelFillProperty = new SimpleObjectProperty<Paint>(Color.WHITE);
this.tickValueDisplayFillProperty = new SimpleObjectProperty<Paint>(new LinearGradient(
0, 0, 0, 1d, true, CycleMethod.NO_CYCLE,
new Stop(0, Color.DARKGRAY.darker()), new Stop(0.4d, Color.BLACK)));
this.tickValueDisplayTextFillProperty = new SimpleObjectProperty<Paint>(Color.WHITE);
this.outerRimFillProperty = new SimpleObjectProperty<Paint>(Color.BLACK);
this.outerRimEffectFillProperty = new SimpleObjectProperty<Color>(Color.LIGHTCYAN);
this.centerGaugeFillProperty = new SimpleObjectProperty<Paint>(
this.indicatorType == IndicatorType.KNOB ? Color.BLACK :
new RadialGradient(0, 0, this.centerX, this.centerY,
this.innerRadius, false, CycleMethod.NO_CYCLE,
new Stop(0, Color.WHITESMOKE),
new Stop(0.7d, Color.BLACK)));
this.indicatorFillProperty = new SimpleObjectProperty<Paint>(
this.indicatorType == IndicatorType.KNOB ? Color.BLACK : Color.ORANGERED);