1
vote
1answer
21 views

JFreeChart LogAxis Frequency/Resistance multipliers

I'm trying to figure out how to dynamically format the values on the axes of my line chart based on the multiplier. I'm using LogAxis for both the X and Y axes, as follows: final LogAxis rangeAxis ...
3
votes
1answer
258 views

JFreeCart line chart with text each point

I would like put text over each point I plotted in a line chart. This is what I can do: And this is what I need (names of point are in green):
2
votes
1answer
78 views

JFree Chart with discontinuous series line charts

I am plotting XYChart range say 1 to 10 then 20 to 30 as series 1, and 11 to 19 as series 2. It looks straight forward to do it in JFreeChart serie1 (1,0), (10,0) (20, 0), (30, 0) and series2 (11, 0), ...
0
votes
1answer
157 views

How the xy line chart gets automatically updated/redrawn whenever a new data point is added to the existing dataset in jfreechart

I have a scenario where, the data (both x and y coordinates) comes dynamically. I have to start drawing the graph from the time when i receive the first point. So the graph should be automatically ...
0
votes
2answers
209 views

Interactive JFreeChart in jsp page

I was able to create a Line Chart using JFreeChart in the jsp page. I am JFreeChart newbie wondering if we can be able to make this chart interactive in JSP page. I have searched google and found few ...
0
votes
1answer
749 views

jFreeChart LineChart adjust Ticks

I'm sure the answer is here somewhere but I really can't find it. I have a LineChart with a lot of entries (lets say 1000). In the plot I can see (and adjust (see A)) the Y-axis perfectly well. Just ...
1
vote
1answer
707 views

Afreechart-change point shape

I am trying to change the shape of a line chart's points, in my app. I am using afreechart's TimeSeriesChart. What I'm having now: What I want: As you can see, in the first chart, the points of ...
1
vote
1answer
690 views

Hide axis label jfreechart

I generate this chart with Jfreechart lib I would like to hide the labels in axis, but show only the first and the last value, How I can do? Thank soo much!!
2
votes
1answer
270 views

Points on a line in jfreechart

How to get all the points (x,y) lying on the line connecting two data-points in a chart in jfreechart ?. In a chart, as we point to the end-points of the line, it shows the x & y coordinates. ...
1
vote
1answer
218 views

Shift the origin from (0,0) to (0,50) in JFreeChart

As shown in image the graph is from line y=0, here i want to plot a graph from y=50, how can i specify this in JFreeChart? Here is Some Code: public class Profile { double last=0; ...
1
vote
1answer
343 views

JFreeChart - Vertical Line Chart

HI how to create a chart like http://livedocs.adobe.com/flex/3/html/images/VerticalLine.png. Using XYPlot. Thanks in advance.
2
votes
1answer
583 views

How to plot jfree line chart with real numbers in X and Y axis

I have to plot a line chart with the range of X and Y axis is in real numbers(eg.-n to n which are float values).How can i manually set the values.And this should be the dynamic chart.Actually im ...
1
vote
1answer
2k views

Jfree chart change Y axis data

I am using Jfree chart 0.9.20's XYLineChartDemo for plotting the execution time of running processes in a program. My X axis denotes the time and Y axis should denote the Pid. How can I edit the ...