Search found 7 matches

by rashed
Mon Feb 08, 2016 5:07 pm
Forum: JFreeChart
Topic: Setting fixed space between boxplot items
Replies: 2
Views: 3117

Re: Setting fixed space between boxplot items

Yes, it was not possible straight but I managed to fix the space finally. Investigating drawVerticalItem method of XYBoxAndWhiskerRenderer class I targeted to control the xx value by my logic and it's working nice now, The changes are as follows: double initX = Constants.DEFAULT_INIT_X_VALUE; // sta...
by rashed
Tue Feb 02, 2016 4:51 am
Forum: JFreeChart
Topic: Setting fixed space between boxplot items
Replies: 2
Views: 3117

Setting fixed space between boxplot items

Hi All I need to set fixed space between Boxplot items. I'm using BoxAndWhiskerXYDataset and XYBoxAndWhiskerRenderer, in the renderer I don't see any option to set a fixed distance between Boxplot items. With Scatterplot we can set the space using XYSeries's add method where the 1st parameter is to ...
by rashed
Thu Jan 28, 2016 4:15 am
Forum: JFreeChart
Topic: Boxplot Category labels not aligned
Replies: 0
Views: 3649

Boxplot Category labels not aligned

Hi All

On my Boxplot chart category labels are not aligned properly with items. I tried many ways, only setting CategoryAxis Category Margin to 1.0f it works but all the boxes disappear. Does anyone have any idea how this can be solved?

--Rashed
by rashed
Tue Jan 05, 2016 8:12 am
Forum: JFreeChart
Topic: JPG or PNG maximum width allowed
Replies: 0
Views: 4654

JPG or PNG maximum width allowed

Hi

Could anyone tell me the maximum width allowed with ServletUtilities.SaveChartAsJPEG or SaveChartAsPNG? I'm increasing my chart image width dynamically, now without knowing the maximum limit I'm not able to restrict it to a maximum limit. Thanks

--Rashed
by rashed
Wed Dec 02, 2015 8:06 am
Forum: JFreeChart
Topic: Boxplot chart with all points
Replies: 4
Views: 6960

Re: Boxplot chart with all points

I'll try it...thanks a lot.
by rashed
Wed Nov 25, 2015 4:09 am
Forum: JFreeChart
Topic: Boxplot chart with all points
Replies: 4
Views: 6960

Re: Boxplot chart with all points

I don't know about DefaultMultiValueCategoryDataset and a ScatterRenderer, I'll try. Do you have any example using these? Thanks
by rashed
Thu Nov 12, 2015 6:28 am
Forum: JFreeChart
Topic: Boxplot chart with all points
Replies: 4
Views: 6960

Boxplot chart with all points

Hi I'm generationg Boxplot chart setting all Boxplot values in BoxAndWhiskerItem constructor as follows: BoxAndWhiskerItem item = new BoxAndWhiskerItem( boxplot.getRawdataAverage(), boxplot.getRawdataMedian(), boxplot.getQ1(), boxplot.getQ3(), boxplot.getBoxLowerBoundary(), boxplot.getBoxUpperBounda...