Search found 7 matches

by nclemeur
Sat Nov 26, 2005 3:26 am
Forum: JFreeChart
Topic: JFreeChart 1.0.0-rc2
Replies: 9
Views: 14502

Resource Bundle Missing in the jar

Hello David, I have downloaded the latest version and it looks great. I did not had to modify anything to run my program with it. However, it looks like the resource files are not included by the ant build script... Also, the chart editor does not seems to work anymore in the demo... Is that somethi...
by nclemeur
Sat Jul 23, 2005 3:27 am
Forum: JFreeChart
Topic: High Performance Apps
Replies: 43
Views: 104782

I think I have found the reason why the tooltip are not generated when only the Shapes are drawn. The bAddEntity is never set to true when only shapes are drawn. So modifying the code like below solves the problem: if (getPlotShapes()) { ... if (shape.intersects(dataArea)) { bAddEntity = true;//<---...
by nclemeur
Fri Jul 22, 2005 2:05 am
Forum: JFreeChart
Topic: High Performance Apps
Replies: 43
Views: 104782

Yes you are completeluy right, it was probably a bit too late a night yesterday (I actually tried several things with these methods, but forgot to remove them when realising that the problem was not there).

But, it does not solve the problem of the tooltip not showing up on Shapes only curves. :cry:
by nclemeur
Thu Jul 21, 2005 2:00 pm
Forum: JFreeChart
Topic: High Performance Apps
Replies: 43
Views: 104782

Tooltip not displayed when Shapes only are shown

I have try this XYRenderer and found to work almost correctly, I am still having some problems to display the tooltips on the when the lines are not displayed. It is working when the shapes and lines are drawn or when the lines only are plotted, but not when the shapes are plotted by themself. Does ...
by nclemeur
Wed Jun 08, 2005 1:23 pm
Forum: JFreeChart
Topic: How to implement ListCellRenderer for the legends of series?
Replies: 0
Views: 2109

How to implement ListCellRenderer for the legends of series?

Hello all, I am still a beginner in Java and I would like to have some advice on what would be the best way to implement the interface ListCellRenderer for all the legend items? I would like to displayed the legend items in a list or combobox? Should this interface be implemented in classes that ext...
by nclemeur
Tue Mar 22, 2005 11:29 am
Forum: JFreeChart
Topic: Logarithm axes problems
Replies: 6
Views: 13392

Logarithm axes problems

Hello, I have looked a little bit on this problem by examing rapidly the code in JFreeChart latest version and I think the problem is that the Log Axes needs to subclasse a few more methods in LogarithmicAxis.java. For example, the method zoomRange is not defined in this class and the method from va...
by nclemeur
Mon Feb 14, 2005 12:51 pm
Forum: JFreeChart
Topic: Logarithm axes problems
Replies: 6
Views: 13392

Logarithm axes problems

Hello, First of all I would like to congratulate the JFree team for producing such an amazing toolkit. I was desesparetely looking for something similar in C++ (free and cross-platform), and never found! So now I am a Java addicted (and newbie). I am still discovering the tools but I found a few gli...