JFreeChart is a free Java chart library with many available chart types and support for numerous output types. The most recent update was in 2011.

learn more… | top users | synonyms

0
votes
0answers
7 views

Implementing AD/BC axis in JFreeChart

I'm trying to use JFreeChart to show chronology data, where the units on the x axis are years. In the AD period this is fine as I can simply use standard integers with an axis label saying 'years ...
1
vote
0answers
27 views

Gridlines above chart in JFreeChart

Is it possible to add the gridlines for my BarChart on-top-of the bars? Tried to get the markers to maybe be able to draw new lines with: Collection markers = ...
0
votes
1answer
19 views

overlapping lables in JFreeChart pie charts

i'm using JFreeChart to plot some data in to a pie chart. when the amount of data is getting high the labels of the graph is overlapping as shown below? can any one suggest me to avoid this issue ...
0
votes
0answers
28 views

JFreeChart: TimeLine with a scrolbar?

is there a way to put a timeserieschart in a jscrollpane. so if i have very much data - the chart looks squeezed together. so i just want to display e.g. 10 data points at the same time and want to ...
0
votes
1answer
44 views

How do I get started with JFreeChart?

I've never used any third party library before. What should I do after I downloaded jfreechart-1.0.14.tar.gz? I don't know if I'm doing these things right: 1. Put the jcommon-1.0.17.jar and ...
0
votes
1answer
23 views

How to make jfreechart displaying the tooltip point information faster

I would like to make the point info tooltip appear faster. How can i do it? with the default setting I have to hover the mouse onto the point, then wait to be able to see point coordinate information. ...
0
votes
0answers
9 views

How to Alternate BasePositiveItemLabelPosition to avoid colliding labels

The following code changes were the labels are positioned for all items: renderer.setBasePositiveItemLabelPosition(new ItemLabelPosition( ItemLabelAnchor.INSIDE5, TextAnchor.TOP_CENTER)); ...
1
vote
1answer
13 views

JFreeChart - Datasets versus Series?

I am creating an XYPlot with initially null dataset, and then add multiple (e.g. 2) XYSeriesCollection instances to it. Like val chart = ChartFactory.createXYLineChart(...) val plot = chart.getXYPlot ...
1
vote
2answers
33 views

Displaying all XYSeries at once in jFreeChart for improving speed

Suppose that we need to display multiple XYSeries in a single XYSeriesCollection. My problem is that every time I add a XYSeries, the JFreeChart wants to update the chart and that slows down the ...
1
vote
1answer
33 views

Need to set column label dynamically in JFreeChart

Please see attached screeshot. i want to set label dynamically for X axis. Currently is says Test1,Test2,Test3,Test4..if i want to set a category array dynamically how can i do that? i mean i want to ...
0
votes
2answers
22 views

jfree chart bar chart add $ to range value

I implemented a code to represent a bar chart (as of picture). Now my problem is that I want to add $ sign to the values to represent the currencies. So that the values would be: $0 ---- $500,000 ...
1
vote
1answer
40 views

Select case mess in JFreeChart

I have a Column(cliente_x_hora, a numeric field) i put in a interval and count the number in each interval.I have 3 textfields(number of intervals,value between intervals and initial value). When I ...
0
votes
1answer
29 views

Overlay button on top of JFreeChart

I am new to JFreechart and having a play with the different features provided. I am looking at an option to overlay a JButton on top of Jfreechart. For eg:- I have a chart with time/price and at some ...
0
votes
1answer
14 views

jfreechart - should adding a point to a dataset be on GUI thread?

When I incoke addition of a data point to a dataset, which is an underlying data set for some chart, by using the code: timeSeriesCollection.add(time, number); does this have to be on the GUI ...
0
votes
0answers
80 views

values not dispalyed on chart in ChartComposite(SWT)

I am currently working on JfreeChart to produce my data as bargraphs.But when i put my code in a shell(SWT).The values are not being displayed on Axis.I am using Chart Composite and JfreeChart Version ...
0
votes
0answers
20 views

draw xypointerannoation using price and time from barchart

Is there a possible way to draw xypointer annotation on the specified price and time from a barchart instead of using x and y coordinates to draw the same??Right now i m able to draw xypointer on the ...
0
votes
0answers
17 views

How to set tooltip for jfreechart dialplot

With jfreechart dialplot, we can add dialtextannotation for it, but if the length of the text is too long, the dialplot is not able to show the whole text, so i want to set a tooltip for it, i search ...
0
votes
0answers
21 views

Select First tick on DateAxis as Monday in jFreechart

I am new to jfreechart technology .I am trying to plot TimeSeries chart for weekly data . The issue is jFreechart selects x-axis ticks automatically . I am trying to plot weekly data for each ...
0
votes
4answers
36 views

GridBagLayout - placement of chart and labels

I am trying to place a JfreeChart together with some labels on a gridBagLayout. I would like the chart to be on the right hand side, taking all the space of the frame horizontally and vertically, and ...
0
votes
1answer
34 views

JFreeChart using numeric query ORACLE ERROR

I was trying to make a query like in that topic: JFreeChart using numeric query ORACLE to generate a barchart, but i am always receiving that error: java.sql.SQLException: ...
0
votes
0answers
20 views

JFreeChart - Title on each subplot in CombinedDomainXYPlot

Is there any way to create title for each subplot added in CombinedDomainXYPlot?. I have 3 subplots and the requirement is to have separate title for each sub plot.
1
vote
1answer
31 views

Make a Table from a TimeSeriesCollection

I have all of my data stored in a TimeSeriesCollection, and instead of making a graph with the data, I want to have the option of presenting the data in a table. The goal is to make it look something ...
0
votes
0answers
23 views

JFreeChart: How to add XYLineChart and XYAreaChart in one Chart?

I need to do in Java program, which can show some math function with Riemann sum, like here: http://en.wikipedia.org/wiki/File:Riemann_sum_convergence.png I was thought about JFreeChart and two types ...
0
votes
0answers
16 views

Same scale for multiple series in Y-axis

I am using SpagoBI JFree Chart Engine,I am showing 5 series in my Y-axis.It is working fine but showing me different scale for each series.I want to have same scale for each series,and can I have the ...
1
vote
1answer
39 views

jfreechart setbackgroundpaint not doing anything

To anyone who has experience with jFreeChart for Swing applications: I am having trouble changing the background for charts. My ultimate goal is to set a smooth gradient background for my charts, but ...
1
vote
1answer
41 views

How to use custom fonts in JFreeChart diagrams?

How can I use custom fonts in JFreeChart diagrams? More details: I have the Time Series Chart and font file geogtqrg.ttf. So I need to assign this font to chart? Thanks for reply! It seems to be, ...
1
vote
1answer
30 views

Margin plot and chart in JFreeChart

Is it possible to make all bartitles located outside the bars in a barchart visible when the max-value is a fixed value? Example of how it looks and how I would like it to look. It should not be any ...
0
votes
0answers
41 views

JFreeChart CombinedXYPlot with Time Series

I was able to plot successfully date against price, with date on the x-axis and price shown in the y-axis. Later I also want to plot volume-date graph in the same chart, so I've used ...
0
votes
0answers
22 views

Mark arrow on bar chart [duplicate]

Here I have a bar chart with crosshairs; and when I right click, I see some menu like "LimitBuy @ price". What I want is whenever I click on the menu in right click, I want an arrow to appear at that ...
-1
votes
0answers
38 views

How to zoom a Composite?

I have a ScrolledComposite and on top of this I have a simple Composite and on top of this simple Composite I have 10 ChartComposites. Each ChartComposite contains a JFreeChart (Bar Chart). I want ...
0
votes
0answers
26 views

JFreeChart: One Axis Distribution Chart

I'm using JFreeChart and I'd like have a Chart with one dimension only: a x-axis (that indicates milliseconds) and shapes (that rapresents events). I created a XYLineChart and a XYPlot with hidden ...
0
votes
0answers
39 views

Jfreechart Line chart plots over series when series values are identical

I am using Jfreechart in Pentaho to plot an line chart connecting points. There are seven series of about 6 data points each. Two of the series have the same exact values and therefore the last ...
1
vote
0answers
20 views

Saving jfreechart as jpeg shows repeating legend

I have a created a Jfreechart and I'm trying to convert as an image. JFrame frame = new JFrame("Chart"); frame.getContentPane().add(new ChartPanel(chart), BorderLayout.CENTER); frame.pack(); ...
-2
votes
0answers
19 views

Finding Area under curve drawn in java with help of JFreeChart [closed]

I hav drawn the curve Using XYSeries and XYPlot of JFreeChart. but now I want to Calculate the area that enclosed by my drawn curve. please do help me on this i serched but could not able to get ...
1
vote
1answer
28 views

Display column keys of stacked bar chart vertically in jFreeCharts

I am developing a javaEE application using jfreecharts. I successfully displayed my data using a stackedBarChart but the column keys (Y-axis labels) are not fully displayed because they are too large. ...
0
votes
2answers
74 views

how to draw crosshair on stock barchart

Hi i want to draw cross hair on this barchar .Can somone help me.I jst want the cross hair to print X and y cordinates where my mouse is pointing or clicking.I m fine even if the cross hair prints X ...
0
votes
1answer
50 views

JFreeChart category image

Is there any way of adding an image next to the category string, as shown in these attachments? Current: Desired: Edit: Based on kiwiwings' answer, I've easily managed to display my image ...
0
votes
0answers
33 views

JFreeChart not updating on button press

I want to change the vertical lines either to the left or right on the x axis if the user presses the button "F1" for left, "F2" for right , and so on for each parameter. The 4 parameters are A B C ...
0
votes
1answer
44 views

Making a library from an already-existing library

I have noticed that, upon using JFreeChart, the program's size is MUCH bigger (about 1.5 MB) than a standard Java program. To confirm what it might be, I have looked at the official developer's guide ...
0
votes
0answers
33 views

Time series chart inside applet is not showing tool tip

I created a time series chart with tool tip, when i ran the code as java application (main) it show's the chart and tool tip as expected, when i integrate the same code inside applet it's show's the ...
0
votes
0answers
26 views

Custom and auto-spaced numeric axis labels for a matrix set

I am plotting a heatmap style dataset using MatrixSeriesCollection and XYPlot. I have vectors which contain the domain and y axis labels as numbers. For example the Y-axis is 72 latitude values: ...
1
vote
1answer
75 views

Using values from a for loop in a function outside of it

I need to take values that I find from inside a for loop to use in a function that isn't inside the loop, and I can't figure out how to do this. What I am hoping to accomplish is to extract values ...
1
vote
0answers
115 views

JFreeChart Stacked Bar Chart

Recently I tried using the JFreeChart I could find some demos over the internet. A demo for Stacked Bar Chart displays the following (exclude the red circular marks). Is there a way, I can modify ...
0
votes
1answer
48 views

Get an access to JFrame components

How to get an access to the XYSeries and XYPlot placed on JFrame? Of course, I can use the variable names series and plot, but my question refers to the functional way to access these components, i.e. ...
1
vote
2answers
63 views

Prevent JFreeChart DialPlot wrapping around with large values?

My data value can vary between 0-100. I would like to display a JFreeChart DialPlot showing the range 0-30, where values larger than 30 are displayed by having the needle fixed at 30 but the true ...
0
votes
1answer
90 views

Java tooltip with image in JAR file

I'm using JFreeChart where I customized the chart's tooltip by implementing the XYToolTipGenerator interface. As the generateToolTip() method is supposed to return a String, here is what I did to show ...
0
votes
1answer
63 views

adding a graph to a JTable with listSelectionModel

I have a JTable that I want to display a graph when either clicking a row or moving a cursor over a row. I am really confused as to how to use listSelectionModel. This is my tableMaker class. I want ...
-2
votes
0answers
50 views

Integrate JFreeChart in Spring MVCPortlet

I have a requirement to show bar/ pie chart over portlet using JFreeChart Library. Portlet is created using jsp view of Spring MVCPortlet Technology. Need working example.
1
vote
2answers
99 views

java pie chart height is not properly placed

I am using JFreeChart to make a chart in my program. My problem is I cannot set the height properly. I have tried every command I could think of, I have put it in other panels, however, nothing works. ...
0
votes
1answer
25 views

jfreechart get the index of the dataset from the mouseevent coordinates

I am working on making some interactions on JFreechart. The thing we are trying to achieve is to get the index of the value(range and the domain) which is clicked by the mouse. In another words, we ...

1 2 3 4 5 23