Search found 36 matches

by jcamp
Wed Sep 13, 2006 6:04 pm
Forum: JFreeChart
Topic: Border problem
Replies: 3
Views: 5701

Border problem

david,

that worked like a charm. thanks !!
by jcamp
Thu Aug 31, 2006 10:45 pm
Forum: JFreeChart
Topic: Border problem
Replies: 3
Views: 5701

Border problem

i have a chart which has logarithmic axes. the last point (100000) on the x axis gets cut off by the border. how do i increase it so as to show the entire 100000 instead of 1000 ???

[/img]
by jcamp
Mon Mar 14, 2005 3:46 pm
Forum: JFreeChart
Topic: draw method revisited
Replies: 1
Views: 2541

draw method revisited

could someone tell me WHEN and HOW the draw method of the JFreeChart class is called?

i'll go from there.
by jcamp
Sat Mar 12, 2005 6:02 pm
Forum: JFreeChart
Topic: draw method
Replies: 0
Views: 1867

draw method

the docs say that in order to get some types of information on a chart that one must pass the draw method of JFreeChart a ChartRenderingInfo object.

could someone please give me a simple example as to how to do that?
by jcamp
Fri Feb 25, 2005 4:30 pm
Forum: JFreeChart
Topic: a request
Replies: 1
Views: 2708

a request

would it be possible in later versions of jfreechart to have all charts created with ChartRenderingInfo and a method chart.getChartRenderingInfo available for all charts ???
by jcamp
Thu Feb 24, 2005 4:12 pm
Forum: JFreeChart
Topic: plot border
Replies: 5
Views: 8623

plot border revisited

it's been quite a while since this thread ran its course.

now, i am using cewolf and was wondering if there now exists a way to get the ChartRenderingInfo object 'post chart creation' as opposed to when the chart is being created ???
by jcamp
Sat Feb 19, 2005 8:04 pm
Forum: JFreeChart
Topic: XYDotRenderer
Replies: 1
Views: 2950

XYDotRenderer

could someone please explain to me why the following code does not produce 'ellipse' points on my scatter chart?

XYPlot plot = (XYPlot) ((JFreeChart) chart).getPlot();
XYDotRenderer xy = new XYDotRenderer();
xy.setPaint(Color.BLACK);
Shape s;
s = new Ellipse2D.Float(0,0,4,4);
xy.setShape(s);
by jcamp
Wed Feb 16, 2005 9:51 pm
Forum: JFreeChart
Topic: ChartPostProcessor
Replies: 1
Views: 3154

ChartPostProcessor

never mind. i'm starting to catch on.
by jcamp
Wed Feb 16, 2005 7:29 pm
Forum: JFreeChart
Topic: ChartPostProcessor
Replies: 1
Views: 3154

ChartPostProcessor

i have created a scatter plot and have expressed it fine in a jsp using the cewolf:chart tag. however, the scatter plot has square points and i want round ones. i am having the hardest time trying to figure out how to use the ChartPostProcessor to change the shape of the points (how do i let the Cha...
by jcamp
Sat Feb 12, 2005 7:09 pm
Forum: JFreeChart
Topic: cewolf struts integration
Replies: 0
Views: 2010

cewolf struts integration

does anyone know how to integrate cewolf, struts and tomcat 5.0 ??

i.e., where do folders go, what settings need to be in the web.xml's etc.

any help would be DEEPLY appreciated.
by jcamp
Fri Feb 11, 2005 11:03 pm
Forum: JFreeChart
Topic: cewolf - invalid path
Replies: 0
Views: 2052

cewolf - invalid path

i have a web app and in that web app i am trying to use cewolf, and i get the following error when trying to use the cewolf:chart tag from a jsp. the error is: RequestProcessor - Invalid path /cewolf was requested obviously the RequestProcessor can't find the cewolf folder which also exists as a sep...
by jcamp
Fri Feb 11, 2005 6:24 pm
Forum: JFreeChart
Topic: cewolf scatter plot example
Replies: 0
Views: 2173

cewolf scatter plot example

i have a set of data points (x,y). i want to create a scatter plot using cewolf.

could someone give me a simple outline to do so. i'm not having much luck using the cewolf documentation.

thanks in advance.
by jcamp
Fri Oct 08, 2004 6:41 pm
Forum: JFreeChart
Topic: Time Series
Replies: 0
Views: 2309

Time Series

i have a time series chart with tooltips that consists of 4 plotted series. assume the chart's name is chrt.

where do i go from here if i want to reduce the chrt to having only series 1 and 2.

when i attempt various things i get an 'out of bounds' error.
by jcamp
Wed May 12, 2004 5:14 pm
Forum: JFreeChart
Topic: plot border
Replies: 5
Views: 8623

plot border

david,

U DA MAN !!

got just what i needed.

thanks much !!
by jcamp
Wed May 12, 2004 2:08 pm
Forum: JFreeChart
Topic: plot border
Replies: 5
Views: 8623

plot border

i also used that but those give the upper and lower 'values' of the axes. i'm after the 'size' of the rectangle which holds the axes...