ChartPanel

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Javed123
Posts: 7
Joined: Tue Dec 11, 2007 12:14 pm
Location: India

ChartPanel

Post by Javed123 » Fri Apr 11, 2008 12:23 pm

Hi all,

anybody tell how much maximum length/width of chartpanel we can give?
is possible to to give width/size in double/long?

Regards
Javed

Taqua
JFreeReport Project Leader
Posts: 698
Joined: Fri Mar 14, 2003 3:34 pm
Contact:

Post by Taqua » Fri Apr 11, 2008 1:25 pm

It is in ints only (as all Swing components) and you'll start to see funny effects once your overall UI-size is larger than 32768 pixels (this is a Swing limitation, not one of JFreeChart).

JFreeChart itself (as non-swing-object) can render itself on any size that a float can hold, but you may need a super-computer for the resulting image.

Locked