Can any one tell me how to eliminate the space around the pie graph drawn?
I don't need any extra space at the top, laft, bottom and right sides of the actual graph.
Thanking you in advance ,
MasterJ
How to eliminate the space around the PIE Graph
How to eliminate the space around the PIE Graph
Master Java
Thanks , it worked well.!
Thanks dropsy,
it worked well.
Could you tell me how to do the same for Bar Graphs?
What I need is to reduce the area of the plot rendered and increase the Background of the chart.because I'm limiting the space between the bars to be a certain maximum; so there is a lot of space in the plot .
Do you have any Idea?
Thanks in advance.
MJ
it worked well.
Could you tell me how to do the same for Bar Graphs?
What I need is to reduce the area of the plot rendered and increase the Background of the chart.because I'm limiting the space between the bars to be a certain maximum; so there is a lot of space in the plot .
Do you have any Idea?
Thanks in advance.
MJ
Master Java
We may try to increase the padding between chart
Hi! Dropsy,
We may try to increase the padding between chart
as below.:
RectangleInsets ri =chart.getPadding();
ri=new RectangleInsets(ri.getTop(),ri.getBottom(),ri.getLeft(),ri.getRight()+50.0);
chart.setPadding(ri);
but that reduces the plot quality.
I need to clipoff the polt area.
Tell me if you find out.
Thanks in advance ,
MJ
We may try to increase the padding between chart
as below.:
RectangleInsets ri =chart.getPadding();
ri=new RectangleInsets(ri.getTop(),ri.getBottom(),ri.getLeft(),ri.getRight()+50.0);
chart.setPadding(ri);
but that reduces the plot quality.
I need to clipoff the polt area.
Tell me if you find out.
Thanks in advance ,
MJ
Master Java