Search found 16 matches

by nitin
Thu Jan 08, 2004 3:33 pm
Forum: JFreeChart
Topic: Histogram is coming wrong + urgent
Replies: 7
Views: 8622

more details of output

Hi,
I forgot to add that the number of bins in the
chart generated was 7 instead of 8 that I had specified

Thanks
by nitin
Thu Jan 08, 2004 3:20 pm
Forum: JFreeChart
Topic: Histogram is coming wrong + urgent
Replies: 7
Views: 8622

Histogram is coming wrong + urgent

Hi For the following observations 43.54 43.54 43.55 43.51 43.46 43.54 43.48 43.56 43.48 43.54 43.59 43.54 43.50 43.49 43.54 43.52 43.52 43.55 43.46 43.54 43.47 43.52 43.46 43.51 43.51 43.59 43.52 and number of bins = 8 the output is coming wrong. The interval for last bin was from 43.550 to 43.575. ...
by nitin
Thu Jan 08, 2004 12:19 pm
Forum: JFreeChart
Topic: Draw Line
Replies: 3
Views: 3943

Draw Line

How to draw dashed line using JFreeChart?
by nitin
Tue Jan 06, 2004 12:28 pm
Forum: JFreeChart
Topic: Extending Axis
Replies: 1
Views: 2830

Extending Axis

Hi David, I am extending NumberAxis to add summary information of chart I get start point by using dataArea.getX(). After getting this I use RefineryUtilities.drawRotatedString method to write a string . Now I want the x cordinate of the point where the string ended .I get the width using fontMetric...
by nitin
Wed Dec 31, 2003 10:16 am
Forum: JFreeChart
Topic: Extending NumberAxis (urgent)
Replies: 1
Views: 2725

Extending NumberAxis (urgent)

Hi David,
I am trying to extend NumberAxis .I want to overwrite refreshTicks method so that I can specify the ticklabel and its position on the Axis.
But I am not getting the parameters of Tick constructor like want should be Anchorx value .
I will be greatful if u can explain this with an example
by nitin
Thu Dec 18, 2003 1:00 pm
Forum: JFreeChart
Topic: Color of specific points
Replies: 3
Views: 4724

hi all,
I have found another way for changing color of specific points in a series but I am not very sure if this is the right way to do it
What I did is add points for which I want to change color in different different series and then set the color for these series using renderer.
It worked for me
by nitin
Wed Dec 17, 2003 7:20 am
Forum: JFreeChart
Topic: plot shapes
Replies: 0
Views: 2149

plot shapes

Can I set plot shapes for a single series.StandarXYItemRenderer has a method setPlotShapes() but it sets for all series
by nitin
Wed Dec 17, 2003 6:19 am
Forum: JFreeChart
Topic: ToolTips
Replies: 1
Views: 4455

ToolTips

Hi, I am drawing some lines in a chart .What I want is when a user moves his mouse on the line it should show the y coordinate along with some text such as ucl=12 .I tried to use CustomXYToolTipGenerator but I am not finding any method to associate the ToolTipsList with a particular series. Also gen...
by nitin
Fri Dec 12, 2003 6:31 am
Forum: JFreeChart
Topic: JFreeChart and IText
Replies: 1
Views: 3667

JFreeChart and IText

Hi,
I am generating a chart using JFreeChart and using IText to generate the pdf for it .I have written a servlet for showing this pdf in HTML but I recieve a I/O error saying file connection timed out.
Can any one help
by nitin
Fri Dec 12, 2003 6:28 am
Forum: JFreeChart
Topic: Color of Lines
Replies: 2
Views: 3915

Hey I have solved the problem U can use StandardXYItemRenderer ren = new StandardXYItemRenderer (); ren.setSeriesPaint(0, new Color(0, 0, 0)); ren.setSeriesPaint(1, new Color(255, 0, 0)); ren.setSeriesPaint(2, new Color(0, 255, 0)); ren.setSeriesPaint(3, new Color(0, 0, 255)); and then set ren in xy...
by nitin
Thu Dec 11, 2003 11:57 am
Forum: JFreeChart
Topic: Secondary Range Axis
Replies: 1
Views: 2745

Secondary Range Axis

Hi,
I am having three lines in a chart .
I want to add symbolic units on the secondary range axis.
The position of these symbolic units must be relative to the lines
in the chart .
Can it be done
by nitin
Thu Dec 11, 2003 7:58 am
Forum: JFreeChart
Topic: TextAnnotations
Replies: 1
Views: 2866

TextAnnotations

Hi,
I am writing some TextAnnotations on chart but if the annotations position
is the same as the rangeAxis TickUnits position they are completely visible.
Can this be avoided
by nitin
Sat Dec 06, 2003 11:05 am
Forum: JFreeChart
Topic: Color of specific points
Replies: 3
Views: 4724

Thanks

Thanks a lot. I could easily solve the problem. I will be greatful if u can help me in solving my next problem I am drawing an XBarR Chart a i want to display the UCl,LCL and median values on secondary range axis at the position where corresponding lines r drawn in the chart.I tried a lot using symb...
by nitin
Thu Dec 04, 2003 1:56 pm
Forum: JFreeChart
Topic: Color of specific points
Replies: 3
Views: 4724

Color of specific points

Hi,
I am plotting a XBarR chart using JFree Chart .
In this chart there is a upperBound and a lower bound .
I require to change color of points that are beyond these two points.
Can anyone help me
by nitin
Wed Dec 03, 2003 11:55 am
Forum: JFreeChart
Topic: PlotShapes
Replies: 0
Views: 2185

PlotShapes

Hi,
I am having three diffrent series .
For the first one I want to show marks where lines join
but not for the next two
Rendere has a method setPlotShapes but it does this for all three series
Can anyone help me?