Search found 24 matches
- Sat Dec 06, 2008 11:32 pm
- Forum: JFreeChart
- Topic: jfreechart is not displaying in my production server
- Replies: 6
- Views: 22625
- Sat Dec 06, 2008 1:11 pm
- Forum: JFreeChart
- Topic: jfreechart is not displaying in my production server
- Replies: 6
- Views: 22625
Have you checked this?
http://www.jfree.org/jfreechart/faq.html#FAQ10
http://www.jfree.org/jfreechart/faq.html#FAQ10
- Fri Dec 05, 2008 5:17 pm
- Forum: JFreeChart
- Topic: LegendItem api
- Replies: 0
- Views: 2735
LegendItem api
It seems that LegendItem lacks some api like
Or maybe there is some logic behind it?[/code]
Code: Select all
setShape(Shape shape);
setStroke(Stroke stroke);
- Fri Dec 05, 2008 4:42 pm
- Forum: JFreeChart
- Topic: Centering the labels of the legend when too long
- Replies: 2
- Views: 6024
Alas, this is not a solution but a workaround.
You can move labels a little with this code
You can move labels a little with this code
Code: Select all
chart.getLegend().setPadding(new RectangleInsets(UnitType.RELATIVE,0,0.1,0,0));
- Fri Dec 05, 2008 2:15 pm
- Forum: JFreeChart
- Topic: Legend Border Paint
- Replies: 1
- Views: 4297
- Fri Dec 05, 2008 2:10 pm
- Forum: JFreeChart
- Topic: Legend Border Paint
- Replies: 1
- Views: 4297
Legend Border Paint
How can i change (or remove) Legend Border (Paint)? I mean the Line which border all of Legend Items?
- Sat Oct 25, 2008 4:09 pm
- Forum: JFreeChart
- Topic: Default looks changed
- Replies: 1
- Views: 4190
sry, that was a reply to [url]http://www.jfree.org/phpBB2/viewtopic.php?t=25785[/url]
- Sat Oct 25, 2008 3:59 pm
- Forum: JFreeChart
- Topic: Default looks changed
- Replies: 1
- Views: 4190
Default looks changed
Yet its not that convinient to rebuild own source code for changes which are left for 3rdparty. Maybe you could try and build a lib of themes which are constant? And cant be changed with change of version?
- Fri Nov 30, 2007 8:26 pm
- Forum: JFreeChart
- Topic: Period Axis Label Generator
- Replies: 1
- Views: 4928
Patch is ready to be tested.
http://sourceforge.net/tracker/index.ph ... tid=315494
General uses are - handle different time dimension scales or make complex formatting like hour number in a week.
http://sourceforge.net/tracker/index.ph ... tid=315494
General uses are - handle different time dimension scales or make complex formatting like hour number in a week.
- Fri Nov 30, 2007 10:39 am
- Forum: JFreeChart
- Topic: Period Axis Label Generator
- Replies: 1
- Views: 4928
Period Axis Label Generator
I think, its unfair that PeriodAxis doesn't have a customizable label generator.
Simple DateFormat is bound onto the RegularPeriod, not the whole scale is available to if to make a right label for tick. I'll try to introduce a sample code in a day or two.
Simple DateFormat is bound onto the RegularPeriod, not the whole scale is available to if to make a right label for tick. I'll try to introduce a sample code in a day or two.
- Sat Oct 27, 2007 11:39 am
- Forum: JFreeChart
- Topic: DateAxis of timeseries containing days with 25 hours
- Replies: 9
- Views: 22379
- Sun Oct 01, 2006 2:45 pm
- Forum: JFreeChart
- Topic: TimePeriodValues TimeSeries TimeTableXYDataSet
- Replies: 2
- Views: 6814
- Sat Sep 30, 2006 9:33 am
- Forum: JFreeChart
- Topic: TimePeriodValues TimeSeries TimeTableXYDataSet
- Replies: 2
- Views: 6814
TimePeriodValues TimeSeries TimeTableXYDataSet
The task is to have 3 series on a chart. Two - in stacked bar rendering, one - in line and shape. All of them are bound to hours (hour,value). The problem is when i do use TimeTableXYDataSet for stacked bar, my LineAndShape does a strange thing - its not drawn in the center of a period, but on the l...
- Wed Nov 24, 2004 11:34 am
- Forum: JFreeChart
- Topic: PeriodAxis Outline and Gridline
- Replies: 1
- Views: 4654
Thats it
In code of PeriodAxis there is no implementaion of refreshticks [code] public List refreshTicks(Graphics2D g2, AxisState state, Rectangle2D plotArea, Rectangle2D dataArea, RectangleEdge edge) { return new java.util.ArrayList(); } [/code] This causes not-drawing of DomainGridlines when PeriodAxis is ...
- Wed Sep 29, 2004 10:42 pm
- Forum: JFreeChart
- Topic: PeriodAxis Outline and Gridline
- Replies: 1
- Views: 4654
PeriodAxis Outline and Gridline
Hi, i've got problem controlling PeriodAxis gridline (it cant be seen) and outline (it cant be removed or changed). Is there a bug in there?