Search found 19 matches

by Rajnesh
Tue Feb 26, 2008 6:29 am
Forum: JFreeChart
Topic: Width of Bars
Replies: 1
Views: 2501

Width of Bars

Hi all

I'm using XYPlot and create a XYBarChart .I want to set the width of bars. m using ClusteredXYBarRenderer.Is there is any way to set the width of bars manually.

Plzzzzzzz help me.........
Waiting for ur reply....... :)
Thanks
by Rajnesh
Thu Feb 21, 2008 9:11 am
Forum: JFreeChart
Topic: URGENT Tick marks angle
Replies: 0
Views: 1859

URGENT Tick marks angle

Hi M using XYPlot and I want to set the XAxis(DomainAxis ) Tick mark values to the angle of 45 as with the Categoryplot like domainAxis.setCategoryLabelPositions(CategoryLabelPositions.DOWN_45); i want the same affect of above by using XYPlot Is it possible plzzzzzzzzz help me to solve this Awaiting...
by Rajnesh
Tue Feb 19, 2008 9:41 am
Forum: JFreeChart
Topic: How to show the data
Replies: 3
Views: 4903

how to show data points

Hi
Plzzzzzzzzzz help me to solve this problem.

Thanks in advance
by Rajnesh
Sat Feb 16, 2008 8:32 am
Forum: JFreeChart
Topic: How to show the data
Replies: 3
Views: 4903

How to show the data

Hello suppose a1 and b1 r the arraylist which contains data for x and Y axis for(int i=0;i<a1.size();i++) { double d= Double.parseDouble(a1.get(i).toString()); double d1= Double.parseDouble(b1.get(i).toString()); series1.add(d, d1); } XYSeriesCollection dataset = new XYSeriesCollection(); dataset.ad...
by Rajnesh
Fri Feb 15, 2008 7:13 am
Forum: JFreeChart
Topic: How to show the data
Replies: 3
Views: 4903

How to show the data

Hi I want to display the data points acc. to the tick marks at the x axis and y axis.Suppose we have tick marks at the the X axis as 5,10,15...... and for y its 100,150,200,250............. and the data points is like( 5,100),(6,110)(8,130),(9,150),(11,180)................. now from this set of data...
by Rajnesh
Wed Jan 09, 2008 7:12 am
Forum: JFreeChart
Topic: Urgent requirement to Format Axis
Replies: 1
Views: 2313

Urgent requirement to Format Axis

Hi I am using XYPLot and set the axis range using SetRange() method but i want the interval between values to be whole no not in float value like suppose i set the range like valAxis.setRange(1.0,36.0) then it plot the range like 0.0 2.5 5.0 7.5 etc I want it to be set like 1.0 3.0 5.0 7.0 etc is it...
by Rajnesh
Wed Jan 09, 2008 7:02 am
Forum: JFreeChart
Topic: Format the XAXis values using XYPLot
Replies: 1
Views: 2479

Format the XAXis values using XYPLot

Hi is it possible to change the stype format osf XAXis range values. I want these values appears to be at an angle of 45 degree as in category plot like domainAxis.setCategoryLabelPositions(CategoryLabelPositions.DOWN_45); but m using XYPlot so is it possible........ Awaiting for ur reply Thanx in a...
by Rajnesh
Wed Jan 09, 2008 5:51 am
Forum: JFreeChart
Topic: how we set the space in XAxis
Replies: 3
Views: 3727

how we set the space in XAxis

Hi
the setLowerMargin() and SetUpperMargin() is not working.
Is there is nay other way...........
plzz help me
Awaiting for ur reply
Thanx
by Rajnesh
Wed Jan 09, 2008 5:49 am
Forum: JFreeChart
Topic: set the Shape of item
Replies: 3
Views: 3963

set the Shape of item

Hi
what should i have to passed for the Shape in setSeriesShape(int,Shape) so that i get get Triangle shape rather the square......
Thanx
by Rajnesh
Tue Jan 08, 2008 11:35 am
Forum: JFreeChart
Topic: Step size of Axis
Replies: 1
Views: 2618

Step size of Axis

Hi How we cwn set the step size of XAxis and YAxis it takes the interval size bydefault suppose i have set the range of XAxis as (1.0,14.0) then in the XAxis these are plotted as 1.0,2.0 3.0 4.0. .. .........14.0 I want to set the steps as 1.0 3.0 5.0 7.0 etc Is it possible Plzzzzzz help me solve th...
by Rajnesh
Tue Jan 08, 2008 10:46 am
Forum: JFreeChart
Topic: Legend Position
Replies: 6
Views: 9703

Legend Position

Hi
Is it possible to display the Legend inside the plot area or chartArea (not ouside or bottom).

Awaiting for ur reply.....
Thanx
Raj
by Rajnesh
Tue Jan 08, 2008 7:35 am
Forum: JFreeChart
Topic: how we set the space in XAxis
Replies: 3
Views: 3727

how we set the space in XAxis

Hi I have a problem to set the margin of XAxis.I want some space left beyond the upperbound of XAxis Range like suppose this dot(.) is the vertical line of graph ( . 1 2 3 4 5 6 .) there is space before 1 and after 6.Ialso want this type of space in my graph can u plzz help me to solve this problem....
by Rajnesh
Tue Jan 08, 2008 7:23 am
Forum: JFreeChart
Topic: set the Shape of item
Replies: 3
Views: 3963

set the Shape of item

Hi
I want to set the shape to be triangular. but right now i get the square.
how is it possible to set the shape as we required.For this i have used setItemShape(i,j).but i have no idea about the value of i nd j here.
so plzzzzzzzz help me to solve this problem
Thanx
by Rajnesh
Tue Jan 08, 2008 5:57 am
Forum: JFreeChart
Topic: Problem to display the Bar Chart
Replies: 2
Views: 3351

Problem to display the Bar Chart

Thanx for ur reply............ :)
by Rajnesh
Sat Jan 05, 2008 9:15 am
Forum: JFreeChart
Topic: Bar Chart Problem
Replies: 1
Views: 2493

Bar Chart Problem

Hi all I want to create a bar chart using XYPLot but wht happen the different bars overlapped each other .Iwant to display every bar separately as in the Category plot .Is any soln for this problem here is the code package chart; import java.awt.Color; import java.text.NumberFormat; import org.jfree...