Thermometer « Plot « JFreeChart Q&A





1. Orientation of Thermometer Plot    jfree.org

2. Thermometer Plot Orientation    jfree.org

3. Thermometer plot help    jfree.org

The thermometer plot example in the documentation (page 374) shows a distinct space between the Units display and the range maximum (100). When I create a simple thermometer plot with the following code, the Units display appears on top of the range maximum. plot.setColumnRadius(5); plot.setGap(1); plot.setBulbRadius(7); plot.setRange(-5.0, 45.0); plot.setValueLocation(1); plot.setValuePaint(Color.black); What controls the positioning of the Units relative to the range? ...