You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(29) |
Oct
(64) |
Nov
(55) |
Dec
(29) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(21) |
Feb
(4) |
Mar
(2) |
Apr
(12) |
May
(7) |
Jun
(7) |
Jul
(22) |
Aug
(34) |
Sep
(15) |
Oct
(38) |
Nov
(34) |
Dec
(19) |
2007 |
Jan
(39) |
Feb
(37) |
Mar
(46) |
Apr
(22) |
May
(27) |
Jun
(24) |
Jul
(4) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2008 |
Jan
(3) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Jens <jen...@gm...> - 2013-11-05 16:34:12
|
Here is the patch/diff to the svn checkout. It will create 4 new subclasses. To not confuse anyone with the existing Gantt chart classes, I decided to name them different. IndependentKeyedValues2D extends DefaultKeyedValues2D Every column has independent (number of) rows. IndependentCategoryDataset extends DefaultCategoryDataset The dataset using the IndependentKeyedValues2D. IndependentStackedBarRenderer extends StackedBarRenderer Renders the IndependentCategoryDataset. It also overwrites the getItemPaint() and therefore stores the colors for each item locally. The colors must be set with the setItemPaint functions. IndependentCategoryPlot extends CategoryPlot Overwrites the render method to use the new subclasses. Please let me know your thoughts. If there is the need for example code using this chart, just let me know. Regards Jens |
From: Rickard N. <ric...@gm...> - 2013-08-01 13:31:24
|
Hi! I think I found a bug in the zooming code in CombinedDomainXYPlot Currently, the anchor is not set correctly when scroll zooming. When we zoom with the mouse over one subplot, my change fixes to use the correct anchor. When we zoom with the mouse over no subplot, for example over a border, the previous behaviour was incorrect, but I was unsure what to replace it with. In this code it becomes an unanchored zoom. Previous ------------------------------------------ public void zoomRangeAxes(double factor, PlotRenderingInfo state, Point2D source, boolean useAnchor) { // delegate 'state' and 'source' argument checks... XYPlot subplot = findSubplot(state, source); if (subplot != null) { subplot.zoomRangeAxes(factor, state, source, useAnchor); } else { // if the source point doesn't fall within a subplot, we do the // zoom on all subplots... Iterator iterator = getSubplots().iterator(); while (iterator.hasNext()) { subplot = (XYPlot) iterator.next(); subplot.zoomRangeAxes(factor, state, source, useAnchor); } } } -------------------------------------------- My proposed fix -------------------------------------------- public void zoomRangeAxes(double factor, PlotRenderingInfo state, Point2D source, boolean useAnchor) { // delegate 'state' and 'source' argument checks... int subplotIndex = state.getSubplotIndex(source); if (subplotIndex >= 0) { XYPlot subplot = (XYPlot) getSubplots().get(subplotIndex); subplot.zoomRangeAxes(factor, state.getSubplotInfo(subplotIndex), source, useAnchor); } else { // if the source point doesn't fall within a subplot, we do the // zoom on all subplots... int n = getSubplots().size(); for (int i = 0; i < n; ++i) { XYPlot subplot = (XYPlot) getSubplots().get(i); subplot.zoomRangeAxes(factor, state.getSubplotInfo(i), source, false); } } } ------------------------------------------ |
From: Severin G. <sge...@re...> - 2012-10-25 14:59:05
|
Hi, This is a repeat of: https://sourceforge.net/tracker/?func=detail&aid=3580130&group_id=15494&atid=365494 jfreechart does not provide basic OSGi metadata and can hence not be used in an OSGi context. I've attached a patch for current trunk which adds ant tasks to build.xml which create such OSGi-ified jars. I think jcommon has been discontinued (maintenance only at this point) and the attached patch only adds a template for generating a jcommon bundle. I've also created a pull request[1] on github for jfreechart-fse which does basically the same thing using maven. Please consider including this patch for your next release and consider shipping jfreechart as bundle instead of jar. Let me know if you have questions. Cheers, Severin [1] https://github.com/jfree/jfreechart-fse/pull/2 |
From: Erica L B. <eri...@ma...> - 2012-02-23 20:58:54
|
Hello - I recently added a patch (ID: 3490503) for org.jfree.data.statistics.Statistics.java for calculating Bull's Moving Average, a special type of weighted average used primarily in the medical field. Please let me know if this would be useful, if there are errors, or if you have any questions/comments. Erica Burgess |
From: Henry P. <hen...@mi...> - 2011-05-05 16:40:01
|
Hi Lionel, You have to use the command 'patch' on a unix system. http://linux.die.net/man/1/patch Not sure how to do this in NetBeans though. HTH, Henry On Tue, 2011-05-03 at 11:33 +0200, Lionel Colliandre wrote: > Dear, > > I use NetBeans 6.9.1. I would like to use the JFreeChart library to > create SpiderChart BUT with the modifications introduced by a patch file > (see here > http://sourceforge.net/tracker/?func=detail&aid=3168669&group_id=15494&atid=315494) > that is a .diff file > > How to use this .diff file??? I try to use the java-diff-utils library > but I do not understand when I have to apply the patch? > > Can you help me? > > thanks, > > Lionel > > > ------------------------------------------------------------------------------ > WhatsUp Gold - Download Free Network Management Software > The most intuitive, comprehensive, and cost-effective network > management toolset available today. Delivers lowest initial > acquisition cost and overall TCO of any competing solution. > http://p.sf.net/sfu/whatsupgold-sd > _______________________________________________ > Jfreechart-patches mailing list > Jfr...@li... > https://lists.sourceforge.net/lists/listinfo/jfreechart-patches |
From: Lionel C. <lio...@un...> - 2011-05-03 09:33:17
|
Dear, I use NetBeans 6.9.1. I would like to use the JFreeChart library to create SpiderChart BUT with the modifications introduced by a patch file (see here http://sourceforge.net/tracker/?func=detail&aid=3168669&group_id=15494&atid=315494) that is a .diff file How to use this .diff file??? I try to use the java-diff-utils library but I do not understand when I have to apply the patch? Can you help me? thanks, Lionel |
From: Chris W. <ch...@ap...> - 2010-10-25 10:56:31
|
Hi all, Please find attached a patch with two purposes: * Allow people to use Maven 2 to build jfree if they wish to (that doesn't have to make it the main build method; but I know that some people, like me, will appreciate the option). This is achieved by adding an Ant target that creates a Maven pom.xml in the current directory, and updating the POM to work with maven 2. * Fix a very minor dependency bug in the "fill-distribution" Ant target. Please review and send me any feedback that would prevent it being committed. Cheers, Chris. -- Aptivate | http://www.aptivate.org | Phone: +44 1223 760887 The Humanitarian Centre, Fenner's, Gresham Road, Cambridge CB1 2ES Aptivate is a not-for-profit company registered in England and Wales with company number 04980791. |
From: Petr K. <pk...@st...> - 2010-03-21 01:58:35
|
Hello, I'm sending Czech localization for your libraries. The files are inside the package in structure as in the project. It's for jfreechart (1.0.12) and jcommon (1.0.15). Have a nice day ;) Petr Kopac student of FAV ZCU |
From: Dave G. <dav...@ob...> - 2008-09-23 09:22:50
|
Ah, thanks! Did you post the bug report also? I applied the fix to Subversion earlier this morning, for inclusion in the 1.0.12 release. Regards, Dave Nick Mitchell wrote: > Hi, > > Just a quick drive-by four line fix... I found that the > StackedXYBarRenderer was ignoring the value set via setShadowVisible > and was always rendering shadows. Attached is the tiny patch... ;) > > Cheers, > > nickm > > > _______________________________________________________________________ > This message was scanned and certified Virus Free by Alexssa | HNet. > www.alexssa.net > www.hnet.net > www.neverlosedata.com > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > ------------------------------------------------------------------------ > > _______________________________________________ > Jfreechart-patches mailing list > Jfr...@li... > https://lists.sourceforge.net/lists/listinfo/jfreechart-patches |
From: Nick M. <ni...@gr...> - 2008-09-22 21:27:25
|
Hi, Just a quick drive-by four line fix... I found that the StackedXYBarRenderer was ignoring the value set via setShadowVisible and was always rendering shadows. Attached is the tiny patch... ;) Cheers, nickm _______________________________________________________________________ This message was scanned and certified Virus Free by Alexssa | HNet. www.alexssa.net www.hnet.net www.neverlosedata.com |
From: Dave G. <dav...@ob...> - 2008-09-19 00:20:56
|
Thanks. I'll get this patch in for today's 1.0.11 release. Regards, Dave Greg Darke wrote: > This diff is against jfreechart-1.0.x-branch. The diff attached to > the previous message was trunk > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > ------------------------------------------------------------------------ > > _______________________________________________ > Jfreechart-patches mailing list > Jfr...@li... > https://lists.sourceforge.net/lists/listinfo/jfreechart-patches |
From: Greg D. <sku...@gm...> - 2008-09-18 13:49:14
|
This diff is against jfreechart-1.0.x-branch. The diff attached to the previous message was trunk |
From: Greg D. <sku...@gm...> - 2008-09-18 09:20:46
|
There is a problem rendering the chart correctly with XYLineAndShapeRenderer when the optimization drawSeriesLineAsPath is set (which is the default) and the chart is zoomed. This is because of the processVisibleItemsOnly optimization that was introduced in 1.0.6. See http://www.jfree.org/phpBB2/viewtopic.php?t=23673 Applying this patch will result in the chart being rendered correctly while zoomed with both optimizations enabled. |
From: Julien B. <jb...@sp...> - 2008-02-01 08:49:26
|
Hello, I have submited a demo jar with full source included of my properties editor in the patch tracker. Any comments is welcome. Julien Blaize |
From: Andrew M. <mi...@nd...> - 2008-01-31 14:28:38
|
I will need a chart properties editor soon. I would like to try yours! --Andrew Mickish Julien Blaize wrote: > I am using JFreeChart in our current project and i have created an > alternate properties editor. |
From: Henry P. <hen...@en...> - 2008-01-31 12:01:29
|
On Thu, 2008-01-31 at 11:09 +0100, julien blaize wrote: > Hello, Hi Julien, > I am Julien Blaize, French developper in SPAD a statistical software > edition company. > First thank you all for this great library. > > I am using JFreeChart in our current project and i have created an > alternate properties editor. <snip> > My questions are : > do you think this is a good way to represent the property of a chart ? > do you have already something like this in progress ? > do you want me to try to create a patch with this work ? 1) I would say yes. Personnaly I'm quite used to the Gnumeric software and it's how properties are represented. I talked with Dave about this quite a while ago and I think he shared this view too. We talked about having a xml tree to store the properties. With this in mind, your approach would be good to edit the chart properties. Anyhow, your editor seems better than the actual one. 2) Don't think so but It's best if Dave can comment here. 3) Again I will not answer myself but my comment would be: release your code with a patch in the present form so we can try it. Not a big deal to use java 1.6 for a try. In case we'd like to include it in jfreechart, java 1.4 compatibility is mandatory (we no longer require java 1.3). > i ask the 3rd question before doing it because my source are in java 1.6 > and i saw JFreeChart wants > source compatible with java 1.3 (if i remember). > And i use the JXTreeTable from Swingx library and i don't think it is a > good idea to keep it that way in a patch. > > so it is quite a bit of work to adapt my code to work with JFreeChart as > a patch. > But i will gladly do it (on my lunch breaks if you don't tell my boss) > if you think it's worth it. > > Thanks for reading. > comment are welcome. Thanks for posting. > NB : sorry for my english. PS: Your english is fine (from my gfrench point of view), don't be sorry anout it :) |
From: julien b. <jb...@sp...> - 2008-01-31 10:03:47
|
Hello, I am Julien Blaize, French developper in SPAD a statistical software edition company. First thank you all for this great library. I am using JFreeChart in our current project and i have created an alternate properties editor. (rigth-click on ChartPanel). I have used a hierarchical view of the properties of a chart. internally i use **java.beans.PropertyEditorManager **to find the correct editor for each property. (I have also created some PropertyEditor for specific object , gradient paint for example) It is using a factory with differents proxy elements to create the property list depending on the type of chart. here is 2 screenshot (in french sorry) one for the editor of an histogram (with axis editor at the end) http://img523.imageshack.us/img523/4813/histogramchartpropertype6.jpg one for the editor of a pie chart (with no axis editor ) http://img513.imageshack.us/img513/3457/piechartpropertynp3.jpg My questions are : do you think this is a good way to represent the property of a chart ? do you have already something like this in progress ? do you want me to try to create a patch with this work ? i ask the 3rd question before doing it because my source are in java 1.6 and i saw JFreeChart wants source compatible with java 1.3 (if i remember). And i use the JXTreeTable from Swingx library and i don't think it is a good idea to keep it that way in a patch. so it is quite a bit of work to adapt my code to work with JFreeChart as a patch. But i will gladly do it (on my lunch breaks if you don't tell my boss) if you think it's worth it. Thanks for reading. comment are welcome. NB : sorry for my english. -- --------------------------- Julien Blaize Service Developpement SPAD --------------------------- |
From: David G. <dav...@ob...> - 2007-07-06 12:08:40
|
This patch (committed) adds layered annotation support to the CategoryItemRenderer interface, to mirror the existing facility for XYItemRenderers: 2007-07-06 David Gilbert <dav...@ob...> * source/org/jfree/chart/annotations/CategoryAnnotation.java (draw): Added 'rendererIndex' and 'info' parameters, * source/org/jfree/chart/annotations/CategoryLineAnnotation.java (draw): Likewise, * source/org/jfree/chart/annotations/CategoryTextAnnotation.java (draw): Likewise, * source/org/jfree/chart/plot/CategoryPlot.java (draw): Added code to draw background and foreground annotations in the renderer(s), (drawAnnotations): Updated for CategoryAnnotation interface API change, * source/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java (backgroundAnnotations): New field, (foregroundAnnotations): Likewise, (AbstractCategoryItemRenderer): Initialise new fields, (addAnnotation(CategoryAnnotation)): New method, (addAnnotation(CategoryAnnotation, Layer)): Likewise, (removeAnnotation(CategoryAnnotation)): Likewise, (removeAnnotations): Likewise, (equals): Updated for new fields, (drawAnnotations): New method, * source/org/jfree/chart/renderer/category/CategoryItemRenderer.java (addAnnotation(CategoryAnnotation)): New method, (addAnnotation(CategoryAnnotation, Layer)): Likewise, (removeAnnotation(CategoryAnnotation)): Likewise, (removeAnnotations): Likewise, (drawAnnotations): Likewise. Regards, Dave |
From: David G. <dav...@ob...> - 2007-07-02 15:39:51
|
This patch is committed for 1.2.0: 2007-07-02 David Gilbert <dav...@ob...> * source/org/jfree/chart/editor/DefaultPlotEditor.java (updatePlotProperties): Updated for changes to LineAndShapeRenderer, * source/org/jfree/chart/renderer/category/LineAndShapeRenderer.java (linesVisible): Removed, (shapesVisible): Likewise, (shapesFilled): Likewise, (LineAndShapeRenderer(boolean, boolean)): Likewise, (getItemLineVisible): Adjust lookup for removed field, (getLinesVisible): Removed, (setLinesVisible): Likewise, (getItemShapeVisible): Adjust lookup for removed field, (getShapesVisible): Removed, (setShapesVisible): Likewise, (getItemShapeFilled): Adjust lookup for removed field, (setShapesFilled): Removed, (equals): Updated for removed fields. Regards, Dave |
From: David G. <dav...@ob...> - 2007-07-02 15:19:14
|
This patch (committed) removes some override fields for the upcoming JFreeChart 1.2.0 release: 2007-07-02 David Gilbert <dav...@ob...> * source/org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.java (linesVisible): Removed, (shapesVisible): Likewise, (shapesFilled): Likewise, (XYLineAndShapeRenderer(boolean, boolean)): Likewise, (getItemLineVisible): Adjust lookup for removed field, (getLinesVisible): Removed, (setLinesVisible): Likewise, (getItemShapeVisible): Adjust lookup for removed field, (getShapesVisible): Removed, (setShapesVisible): Likewise, (getItemShapeFilled): Adjust lookup for removed field, (setShapesFilled): Removed, (equals): Updated for removed fields, * source/org/jfree/chart/renderer/xy/XYStepRenderer.java (XYStepRenderer): Updated for removed methods in superclass, * tests/org/jfree/chart/renderer/xy/junit/XYLineAndShapeRendererTests.java (testEquals): Updated for removed methods. Regards, Dave |
From: David G. <dav...@ob...> - 2007-07-02 14:48:29
|
This patch (committed for 1.2.0) adds entity support for axis labels: 2007-07-02 David Gilbert <dav...@ob...> * experimental/org/jfree/experimental/chart/axis/LogAxis.java (draw): Updated for change in method signature, * source/org/jfree/chart/axis/Axis.java (labelToolTip): New field, (labelURL): Likewise, (Axis(String)): Initialise new fields, (getLabelToolTip): New method, (setLabelToolTip): Likewise, (getLabelURL): Likewise, (setLabelURL): Likewise, (drawLabel): Added PlotRenderingInfo parameter and create entity if needed, (equals): Check new fields, * source/org/jfree/chart/axis/CategoryAxis.java (draw): Updated for change in method signature, * source/org/jfree/chart/axis/CategoryAxis3D.java (draw): Likewise, * source/org/jfree/chart/axis/DateAxis.java (draw): Likewise, * source/org/jfree/chart/axis/NumberAxis.java (draw): Likewise, * source/org/jfree/chart/axis/NumberAxis3D.java (draw): Likewise, * source/org/jfree/chart/axis/PeriodAxis.java (draw): Likewise, * source/org/jfree/chart/axis/SubCategoryAxis.java (draw): Likewise, * source/org/jfree/chart/entity/AxisLabelEntity.java: New file, * tests/org/jfree/chart/axis/junit/AxisTests.java (equals): Check new fields. Regards, Dave |
From: David G. <dav...@ob...> - 2007-06-27 13:16:02
|
This patch (committed) adds some more missing methods to the renderer interfaces and base classes: 2007-06-27 David Gilbert <dav...@ob...> * source/org/jfree/chart/plot/XYPlot.java (drawDomainGridlines): Updated for method name change in XYItemRenderer, * source/org/jfree/chart/renderer/AbstractRenderer.java (baseItemLabelsVisible): Changed from Boolean to boolean, (AbstractRenderer): Updated for field type change, (isSeriesItemLabelsVisible): Likewise, (getBaseItemLabelsVisible): Modified return type, (setBaseItemLabelsVisible(boolean)): Updated for field type change, (setBaseItemLabelsVisible(Boolean)): Removed, (setBaseItemLabelsVisbile(boolean, boolean)): Updated for field type change, (equals): Likewise, * source/org/jfree/chart/renderer/category/CategoryItemRenderer.java (getBaseItemLabelsVisible): Modified return type, (setBaseItemLabelsVisible(Boolean)): Removed, (setBaseItemLabelsVisible(Boolean, boolean)): Removed, (setBaseItemLabelsVisible(boolean)): New method, (setBaseItemLabelsVisible(boolean, boolean)): New method, (getLegendItemLabelGenerator): New method, (setLegendItemLabelGenerator): Likewise, (getLegendItemToolTipGenerator): Likewise, (setLegendItemToolTipGenerator): Likewise, (getLegendItemURLGenerator): Likewise, (setLegendItemURLGenerator): Likewise, * source/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java (setSeriesItemLabelGenerator(int, XYItemLabelGenerator, boolean)): New method, (setBaseItemLabelGenerator(XYItemLabelGenerator, boolean)): Likewise, (setSeriesToolTipGenerator(int, XYToolTipGenerator, boolean)): Likewise, (setBaseToolTipGenerator(XYToolTipGenerator, boolean)): Likewise, (drawDomainGridline): Removed, * source/org/jfree/chart/renderer/xy/XYItemRenderer.java (setSeriesPaint(int, Paint, boolean)): New method, (setBasePaint(Paint, boolean)): Likewise, (getItemFillPaint(int, int)): Likewise, (getSeriesFillPaint(int)): Likewise, (setSeriesFillPaint(int, Paint)): Likewise, (setSeriesFillPaint(int, Paint, boolean)): Likewise, (getBaseFillPaint): Likewise, (setBaseFillPaint(Paint)): Likewise, (setBaseFillPaint(Paint, boolean)): Likewise, (setSeriesOutlinePaint(int, Paint, boolean)): Likewise, (setBaseOutlinePaint(Paint, boolean)): Likewise, (setSeriesStroke(int, Stroke, boolean)): Likewise, (setBaseStroke(Stroke, boolean)): Likewise, (setSeriesOutlineStroke(int, Stroke, boolean)): Likewise, (setBaseOutlineStroke(Stroke, boolean)): Likewise, (setSeriesShape(int, Shape, boolean)): Likewise, (setBaseShape(Shape, boolean)): Likewise, (getLegendItemToolTipGenerator): Likewise, (setLegendItemToolTipGenerator): Likewise, (getLegendItemURLGenerator)): Likewise, (setLegendItemURLGenerator)): Likewise, (setSeriesToolTipGenerator(int, XYToolTipGenerator, boolean)): Likewise, (setBaseToolTipGenerator(XYToolTipGenerator, boolean)): Likewise, (setSeriesItemLabelGenerator(int, XYItemLabelGenerator, boolean)): Likewise, (setBaseItemLabelGenerator(XYItemLabelGenerator, boolean)): Likewise, (setSeriesItemLabelFont(int, Font, boolean)): New method, (setBaseItemLabelFont(Font, boolean)): Likewise, (setSeriesItemLabelPaint(int, Paint, boolean)): Likewise, (setBaseItemLabelPaint(Paint, boolean)): Likewise, (getItemCreateEntity): Likewise, (getSeriesCreateEntities): Likewise, (setSeriesCreateEntities(int, Boolean)): Likewise, (setSeriesCreateEntities(int, Boolean, boolean)): Likewise, (getBaseCreateEntities): Likewise, (setBaseCreateEntities(boolean)): Likewise, (setBaseCreateEntities(boolean, boolean)): Likewise, (drawDomainLine): New method. Regards, Dave |
From: David G. <dav...@ob...> - 2007-06-26 15:42:29
|
This patch (committed) adds a new method to the CategoryItemRenderer and XYItemRenderer interfaces: 2007-06-27 David Gilbert <dav...@ob...> * source/org/jfree/chart/renderer/AbstractRenderer.java (getSeriesItemLabelsVisible): New method, * source/org/jfree/chart/renderer/category/CategoryItemRenderer.java (setSeriesItemLabelsVisible): Likewise, * source/org/jfree/chart/renderer/xy/XYItemRenderer.java (setSeriesItemLabelsVisible): Likewise. Regards, Dave |
From: David G. <dav...@ob...> - 2007-06-26 15:14:37
|
This patch (committed) fixes the behaviour of a couple of methods for consistency: 2007-06-27 David Gilbert <dav...@ob...> * source/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java (getItemLabelGenerator): Do lookup, (getSeriesItemLabelGenerator): Return per-series value only, even if null, (getItemURLGenerator): Do lookup, (getSeriesItemURLGenerator): Return per-series value only, even if null. Regards, Dave |
From: David G. <dav...@ob...> - 2007-06-26 14:44:15
|
This patch (committed) renames a few methods in the CategoryItemRenderer interface, for the JFreeChart 1.2.0 release: 2007-06-27 David Gilbert <dav...@ob...> * source/org/jfree/chart/ChartFactory.java (createAreaChart): Updated for renamed method, (createBarChart): Likewise, (createBarChart3D): Likewise, (createGanttChart): Likewise, (createLineChart): Likewise, (createLineChart3D): Likewise, (createStackedAreaChart): Likewise, (createStackedBarChart): Likewise, (createStackedBarChart3D): Likewise, (createWaterfallChart): Likewise, * source/org/jfree/chart/renderer/category/AbstractCategoryItemRenderer.java (itemURLGeneratorList): Renamed urlGeneratorList, (baseItemURLGenerator): Renamed baseURLGenerator, (AbstractCategoryItemRenderer): Updated for renamed fields, (getItemURLGenerator): Updated for renamed fields, (getSeriesItemURLGenerator): Renamed getSeriesURLGenerator, (setSeriesItemURLGenerator): Renamed setSeriesURLGenerator, (getBaseItemURLGenerator): Renamed getBaseURLGenerator, (setBaseItemURLGenerator): Renamed setBaseURLGenerator, (equals): Updated for renamed fields, (clone): Likewise, * source/org/jfree/chart/renderer/category/CategoryItemRenderer.java (getSeriesItemURLGenerator): Renamed getSeriesURLGenerator, (setSeriesItemURLGenerator): Renamed setSeriesURLGenerator, (getBaseItemURLGenerator): Renamed getBaseURLGenerator, (setBaseItemURLGenerator): Renamed setBaseURLGenerator. Regards, Dave |