Search found 6 matches

by unknownfrog
Mon Oct 17, 2011 8:56 am
Forum: JFreeChart
Topic: Using JFreeChart with Tcl
Replies: 2
Views: 3056

Re: Using JFreeChart with Tcl

You might take a look at the Blt library for tcl/tk. There is a graph
widget too.
by unknownfrog
Wed Oct 29, 2008 10:45 am
Forum: JFreeChart
Topic: XYLineAndShapeRenderer-has problem
Replies: 15
Views: 37783

fix of shunk in 1.0.11

Hi,

is the fix provided by skunk integrated into the 1.0.11 Version?

Tom
by unknownfrog
Wed Apr 23, 2008 9:01 am
Forum: JFreeChart
Topic: chartMouseMoved bug?
Replies: 6
Views: 13422

Thanks for the replies as I understand the problem. So there is no current way of detecting when the mouse passes over a line, if it doesn't also pass over where a point (shape) is? That's correct. It is not a big prolem here, just would be nice to have. Currently I am also short of time to impleme...
by unknownfrog
Thu Apr 17, 2008 5:07 pm
Forum: JFreeChart
Topic: chartMouseMoved bug?
Replies: 6
Views: 13422

Hi, I am using this to highlight curves under the mouse cursor (just using a thicker paint for the line paint). Currently this works only at the places where data points are available, but not on the lines conneting them. So I don't require the complete XYEntity, but only the dataset and series it b...
by unknownfrog
Wed Mar 26, 2008 3:22 pm
Forum: JFreeChart
Topic: XYLineAndShapeRenderer-has problem
Replies: 15
Views: 37783

Hi,

I had the same problem here. The above workaround works here, but the performance penalty is obvious. Switching off drawing as linepath would also solve the problem with a large dataset and a dash pattern this results in a dowdy drawing.

Tom
by unknownfrog
Thu Mar 20, 2008 5:52 pm
Forum: JFreeChart
Topic: Using an AttributedString for an LegendItem
Replies: 1
Views: 4654

Using an AttributedString for an LegendItem

Hi, I tried to colorize an LegendItem with code similar to the following: AttributedString txt = new AttributedString("colored"); txt.addAttribute(TextAttribute.FOREGROUND, Color.RED); legendItems.add(new LegendItem(txt, null, null, null, new Line2D.Double(-lineLength, 0.0, lineLength, 0.0), new Bas...