Search found 3 matches
- Sun Oct 25, 2015 9:25 pm
- Forum: JFreeChart
- Topic: How to remove outliers(small circle) from Box and Whisker
- Replies: 4
- Views: 9707
How to remove outliers(small circle) from Box and Whisker
Im using below code to generate box plot chart. But depend on some values it show small circle without drawing the whisker. I need to show whisker not the small circle. Is it possible to hide circle and show the whisker? private void createBoxPlotChart(OutputStream out, Object data) throws Exception...
- Sat Oct 24, 2015 6:35 pm
- Forum: JFreeChart
- Topic: set two or three hour time range in dataaxis - XYbarchart
- Replies: 1
- Views: 5235
Re: set two or three hour time range in dataaxis - XYbarchar
I found the answer to the question. private IntervalXYDataset createIntervalXYDataset() { TimePeriodValuesCollection result = new TimePeriodValuesCollection(); TimePeriodValues s1 = new TimePeriodValues("Daily Holding Time"); if (holdTimeRptList != null && holdTimeRptList.size() > 0 && graphList != ...
- Sat Oct 24, 2015 10:04 am
- Forum: JFreeChart
- Topic: set two or three hour time range in dataaxis - XYbarchart
- Replies: 1
- Views: 5235
set two or three hour time range in dataaxis - XYbarchart
Im using below code to create XYbarchart. I need to draw the bar for two or more than two hours but my code draw only for one hour in a day. so is there a way to do it? private void createXYBarChart(OutputStream out, Object data) throws Exception { ChartRenderingInfo info = new ChartRenderingInfo();...