Search found 10 matches
- Tue Sep 27, 2016 8:01 pm
- Forum: JFreeChart
- Topic: Boxandwhisker plot 5% and 95%
- Replies: 3
- Views: 5868
Re: Boxandwhisker plot 5% and 95%
Never-mind, The calculated values already in a 5% and 95% percentiles.
- Sun Sep 25, 2016 8:00 am
- Forum: JFreeChart
- Topic: Boxandwhisker plot 5% and 95%
- Replies: 3
- Views: 5868
Boxandwhisker plot 5% and 95%
Is it possible to plot 5%and 95% percentile boxandwhisker chart?
- Tue Sep 13, 2016 5:28 pm
- Forum: JFreeChart
- Topic: Setting Plot Orientation for 2nd axis plot
- Replies: 1
- Views: 4170
Setting Plot Orientation for 2nd axis plot
Is it possible to set independent plot orientation for the 2nd axis plot on a CombinedDomainXYPlot?
- Fri Sep 02, 2016 8:20 am
- Forum: JFreeChart
- Topic: BoxandWhisker timing plot
- Replies: 8
- Views: 10858
Re: BoxandWhisker timing plot
This is the closest thing that I can sort of generate the desire plot for a " BoxAndWhisker Timing Plot". It would be nice if someone with intimate knowledge of the API framework to include a new enhancement in future release of the BoxAndWhiskerrenderer to allow a proper way to generate this kind o...
- Fri Sep 02, 2016 8:08 am
- Forum: JFreeChart
- Topic: AutoRange and Zoom
- Replies: 17
- Views: 34705
Re: AutoRange and Zoom
Here's a complete code to include the override of restoreAutoRangeBounds(). public class MyChartPanel extends ChartPanel { public MyChartPanel(JFreeChart chart) { super(chart); } @Override public void restoreAutoDomainBounds() { super.restoreAutoDomainBounds(); // Set your desired range DomainAxis.s...
- Sun Aug 28, 2016 8:26 am
- Forum: JFreeChart
- Topic: BoxandWhisker timing plot
- Replies: 8
- Views: 10858
Re: BoxandWhisker timing plot
Great suggestion, however; is it possible to cast or override the string y-axis to be a number axis? Want to draw some things like below: 10| |------[‾‾‾‾‾‾‾|‾‾‾‾‾]------| | ‾‾‾‾‾‾‾‾‾‾‾‾ | --------------d1----d2---d3------------- Trying to plot... For a given y value, there are potentially up to 21 ...
- Sat Aug 27, 2016 7:45 am
- Forum: JFreeChart
- Topic: BoxandWhisker timing plot
- Replies: 8
- Views: 10858
Re: BoxandWhisker timing plot
I was hoping to modify the xybarrender to do render a boxandwhisker chart with DATE as timeline and a range is a NumberAxis. package misc.test; import java.awt.Color; import java.awt.Graphics2D; import java.awt.Shape; import java.awt.geom.Line2D; import java.awt.geom.Rectangle2D; import java.awt.geo...
- Tue Aug 23, 2016 3:31 am
- Forum: JFreeChart
- Topic: BoxandWhisker timing plot
- Replies: 8
- Views: 10858
BoxandWhisker timing plot
Is it possible to do render a boxandwhisker chart with value domain and date/time range? for example: This is the normal way to fill the data: [code] private BoxAndWhiskerXYDataset createDataset() { final int ENTITY_COUNT =1; DefaultBoxAndWhiskerXYDataset dataset = new DefaultBoxAndWhiskerXYDataset(...
- Sat Aug 20, 2016 5:12 am
- Forum: JFreeChart
- Topic: BoxAndWhisker and TimerSeriesCollection
- Replies: 2
- Views: 4567
Re: BoxAndWhisker and TimerSeriesCollection
just figured it out. // add secondary axis subplot1.setDataset(1, createDataset2()); final NumberAxis axis2 = new NumberAxis("Range Axis 2"); axis2.setAutoRangeIncludesZero(false); subplot1.setRangeAxis(1, axis2); subplot1.setRangeAxisLocation(1, AxisLocation.BOTTOM_OR_RIGHT); subplot1.setRenderer(1...
- Sat Aug 20, 2016 12:34 am
- Forum: JFreeChart
- Topic: BoxAndWhisker and TimerSeriesCollection
- Replies: 2
- Views: 4567
BoxAndWhisker and TimerSeriesCollection
Is it possible to combined a XYDataset timeseries collection with a BoxAndWhiskerXYDataset into a single subplot?