ThermometerPlot « Plot « JFreeChart Q&A





1. ThermometerPlot with cewolf?    jfree.org

2. ThermometerPlot and subranges    jfree.org

Code: Select all if (min != null) { thermPlot.setSubrange(ThermometerPlot.NORMAL, Double.MIN_VALUE, min.doubleValue()); thermPlot.setSubrangePaint(ThermometerPlot.NORMAL, field.getMinColor()); ...

3. ThermometerPlot suggestion    jfree.org

It would be cool if ThermometerPlot allowed for specifying multiple intervals like MeterPlot rather than just three sub-ranges. I have a need for showing a changing temperature where there is a "normal" temp range in the center and both a warning and critical range above and below for a total of five ranges. (i.e., critical low, warning low, normal, warning high, ...

4. bulb radius in ThermometerPlot    jfree.org

5. ThermometerPlot    jfree.org

plot.setRange(0.0, 200.0); plot.setSubrange(0, 0.0, 85.0); plot.setSubrangePaint(0, Color.red); plot.setSubrange(1, 85.0, 125.0); ...

6. ThermometerPlot modification    jfree.org

Hello everyone, I'm just wondering if there's a way to determine the Y value of where the level in a thermometer plot is on the actual panel? I'm asking because I want to append an object to that level that rises and falls with it. If there's an easier way to do this that someone knows of can you please help ...