-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
8436 lines (7022 loc) · 326 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2006-06-17 David Gilbert <[email protected]>
* source/org/jfree/chart/util/ShapeList.java
(equals): Reimplemented.
2006-06-16 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/YIntervalRenderer.java
(additionalItemLabelGenerator): New field,
(YIntervalRenderer): Initialise new field,
(getAdditionalItemLabelGenerator): New method,
(setAdditionalItemLabelGenerator): Likewise,
(drawItem): Added additional item label support,
(drawAdditionalItemLabel): New method,
(equals): Include new field.
2006-06-16 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/HighLowRenderer.java
(tickLength): New field,
(HighLowRenderer): Initialise tickLength,
(getTickLength): New method,
(setTickLength): Likewise,
(findRangeBounds): New method override,
(drawItem): Use new tickLength field,
(equals): Check new field.
2006-06-16 David Gilbert <[email protected]>
* source/org/jfree/chart/labels/IntervalXYItemLabelGenerator.java:
New class.
2006-06-16 David Gilbert <[email protected]>
* source/org/jfree/chart/labels/AbstractXYItemLabelGenerator.java
(nullXString): Removed,
(getNullYString): New method,
(createItemArray): Removed redundant code,
(equals): Check nullYString field,
(hashCode): Implemented.
2006-06-16 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/XYSplineAndShapeRenderer.java:
Renamed XYSplineRenderer.java.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/TimeSeriesCollection.java
(getSeries): Changed argument from String to Comparable.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/Millisecond.java
(compareTo): Added handling for general RegularTimePeriod.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/TimePeriodValue.java
(toString): New method override,
* source/org/jfree/data/time/TimePeriodValues.java
(updateBounds): Update maxMiddleIndex correctly.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/Week.java
(Week(Date, TimeZone)): Hand on the zone.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/SimpleTimePeriod.java
(start): Changed from Date to long,
(end): Likewise,
(getStartMillis): New method,
(getEndMillis): Likewise,
(getStart): Returns new date instance,
(getEnd): Likewise.
2008-06-10 David Gilbert <[email protected]>
Bug 1864222:
* source/org/jfree/data/time/TimeSeries.java
(createCopy(RegularTimePeriod, RegularTimePeriod)): Handle empty range.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/FixedMillisecond.java
(time): Changed from Date to long.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/data/time/DateRange.java
(lowerDate): Changed from Date to long,
(upperDate): Likewise,
(DateRange(Date, Date)): Updated for field type change,
(DateRange(long, long)): Likewise,
(getLowerDate): Likewise,
(getUpperDate): Likewise,
(toString): Likewise.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/chart/axis/DateTickUnit.java
(addToDate(Date)): Deprecated.
2008-06-10 David Gilbert <[email protected]>
* source/org/jfree/chart/imagemap/DynamicDriveToolTipTagFragmentGenerator.java
(generateToolTipFragment): Escape text,
* source/org/jfree/chart/imagemap/OverLIBToolTipTagFragmentGenerator.java
(generateToolTipFragment): Likewise,
* source/org/jfree/chart/imagemap/StandardToolTipTagFragmentGenerator.java
(generateToolTipFragment): Likewise.
2008-06-02 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java
(isPointInRect): New utility method,
* source/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java
(drawItem): Modified bounds check for inclusion of chart entity,
* source/org/jfree/chart/renderer/xy/XYLineAndShapeRenderer.java
(drawSecondaryPass): Modified bounds check for inclusion of chart entity.
2008-06-02 David Gilbert <[email protected]>
* swt/org/jfree/experimental/chart/swt/ChartComposite.java
(getChartRenderingInfo): New method,
(isDomainZoomable): Likewise,
(setDomainZoomable): Likewise,
(isRangeZoomable): Likewise,
(setRangeZoomable): Likewise.
2008-06-02 David Gilbert <[email protected]>
Bug 1977609:
* source/org/jfree/chart/util/SerialUtilities.java
(readShape): Handle SEG_CLOSE for GeneralPath,
* source/org/jfree/chart/util/ShapeUtilities.java
(equal(GeneralPath, GeneralPath)): Use correct path for comparison,
* tests/org/jfree/chart/util/junit/SerialUtilities.java: New file,
* tests/org/jfree/chart/util/junit/ShapeUtilities.java: Likewise,
* tests/org/jfree/chart/util/junit/UtilPackageTests.java: Include new tests.
2008-05-30 Henry Proudhon <[email protected]>
* source/swt/org/jfree/experimental/chart/swt/ChartComposite.java:
(ChartComposite): removed duplicate code.
2008-05-24 Henry Proudhon <[email protected]>
* source/swt/org/jfree/experimental/chart/swt/ChartComposite.java:
(paintControl): Corrected the axis traces which were inverted,
(chart): Fixed listener registered twice,
(dispose): release the buffer image resources.
* source/swt/org/jfree/experimental/swt/SWTGraphics2D.java
(setTransform): use resource from pool if possible,
(getSwtTransformFromPool): New method,
(disposeResourcePool): dispose transform resources.
2008-04-18 David Gilbert <[email protected]>
Patch 1943021 (Brian Cabana):
* source/org/jfree/chart/plot/MultiplePiePlot.java
(MultiplePiePlot(CategoryDataset)): Call setDataset() to ensure that
plot registers as a dataset listener,
* tests/org/jfree/chart/plot/junit/MultiplePiePlotTests.java
(testConstructors): New test method.
2008-04-11 David Gilbert <[email protected]>
* source/org/jfree/chart/urls/CustomXYURLGenerator.java
(clone): Implemented,
* tests/org/jfree/chart/urls/junit/CustomPieURLGeneratorTests.java:
New file,
* tests/org/jfree/chart/urls/junit/CustomXYURLGeneratorTests.java
(testEquals): New test method,
(testCloning): Likewise,
* tests/org/jfree/chart/urls/junit/UrlsPackageTests.java
(suite): Added CustomPieURLGeneratorTests.
2008-04-11 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/DeviationRenderer.java
(findRangeBounds): New method override,
* source/org/jfree/chart/renderer/xy/YIntervalRenderer.java
(findRangeBounds): Likewise.
2008-04-10 David Gilbert <[email protected]>
* source/org/jfree/data/xy/XIntervalSeriesCollection.java
(getStartXValue): New method override,
(getEndXValue): Likewise,
(getYValue): Likewise,
(removeSeries(int)): New method,
(removeSeries(XIntervalSeries)): Likewise,
(removeAllSeries): Likewise.
2008-04-10 David Gilbert <[email protected]>
* source/org/jfree/data/xy/XIntervalSeries.java
(getXLowValue): New method,
(getXHighValue): Likewise.
2008-04-08 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/CandlestickRenderer.java
(findRangeBounds): New method override,
* source/org/jfree/data/general/DatasetUtilities.java
(iterateRangeBounds(XYDataset)): Fixed typo for OHLCDataset.
2008-04-08 David Gilbert <[email protected]>
* source/org/jfree/chart/block/BorderArrangement.java
(arrangeFF): Check for negative width remaining.
2008-04-08 David Gilbert <[email protected]>
* source/org/jfree/chart/block/ColorBlock.java
(arrange): New method override,
(draw): Add code for margin, border and padding,
* source/org/jfree/chart/block/EmptyBlock.java
(arrange): New method override,
(draw(Graphics2D, Rectangle2D)): Delegate,
(draw(Graphics2D, Rectangle2D, Object)): New method override.
2008-04-07 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/CategoryPlot.java
(removeDomainMarker): Check for null collection,
(removeRangeMarker): Likewise,
* source/org/jfree/chart/plot/XYPlot.java
(removeDomainMarker): Check for null collection,
(removeRangeMarker): Likewise.
2008-04-07 David Gilbert <[email protected]>
* source/org/jfree/data/DefaultKeyedValue.java:
(DefaultKeyedValue): Don't allow null key,
(equals): Simplified to reflect that this.key is never null.
2008-04-07 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java:
Updated various method to use fireChangeEvent(),
* source/org/jfree/chart/renderer/xy/XYBlockRenderer.java:
(setBlockWidth): Use fireChangeEvent(),
(setBlockHeight): Likewise,
(setBlockAnchor): Likewise,
(setPaintScale): Likewise,
(drawItem): Added code to collect entity information.
2008-03-31 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/PiePlot.java
(equals): Updated for labelLinkStyle field.
2008-03-31 David Gilbert <[email protected]>
Patch 1891849 by Martin Hilpert:
* source/org/jfree/chart/plot/PieLabelLinkStyle.java: New file,
* source/org/jfree/chart/plot/PiePlot.java
(labelLinkStyle): New field,
(getLabelLinkStyle): New method,
(setLabelLinkStyle): Likewise,
(drawLeftLabel): Added support for labelLinkStyle field,
(drawRightLabel): Likewise.
2008-03-31 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/PieLabelDistributor.java
(distributeLabels): Comment out adjustInwards() until it is working,
(adjustDownwards): Fix check for lower bound,
(adjustUpwards): Fix check for upper bound,
(distributeEvenly): Allow overlapping rather than exceeding bounds.
2008-03-31 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/PiePlot.java
(drawLeftLabels): Adjust label area for interiorGap,
(drawRightLabels): Likewise.
2008-03-31 David Gilbert <[email protected]>
* source/org/jfree/chart/labels/HighLowItemLabelGenerator.java:
(hashCode): Implemented,
* source/org/jfree/chart/labels/MultipleXYSeriesLabelGenerator.java:
Likewise,
* source/org/jfree/chart/labels/StandardCategorySeriesLabelGenerator.java:
Likewise,
* source/org/jfree/chart/labels/StandardXYSeriesLabelGenerator.java:
Likewise,
* source/org/jfree/chart/labels/SymbolicXYItemLabelGenerator.java:
Likewise.
2008-03-31 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/CombinedDomainCategoryPlot.java
(getSubplots): Return null if this.subplots is null,
* source/org/jfree/chart/plot/CombinedDomainXYPlot.java: Likewise,
* source/org/jfree/chart/plot/CombinedRangeCategoryPlot.java: Likewise,
* source/org/jfree/chart/plot/CombinedRangeXYPlot.java: Likewise.
2008-03-28 David Gilbert <[email protected]>
* source/org/jfree/data/general/DatasetUtilities.java
(iterateCategoryRangeBounds): Deprecated,
(iterateRangeBounds(CategoryDataset)): New method,
(iterateRangeBounds(CategoryDataset, boolean)): Likewise.
2008-03-28 David Gilbert <[email protected]>
* source/org/jfree/data/general/DatasetUtilities.java
(findRangeBounds(XYDataset, boolean)): Use boolean argument for call to
iterateRangeBounds(),
(iterateXYRangeBounds): Deprecated,
(iterateRangeBounds(XYDataset)): New method,
(iterateRangeBounds(XYDataset, boolean)): Likewise.
2008-03-28 David Gilbert <[email protected]>
* source/org/jfree/data/general/DatasetUtilities.java
(sampleFunction2D): Fixed sample count bug.
2008-03-27 David Gilbert <[email protected]>
Bug 1927239:
* source/org/jfree/chart/renderer/category/WaterfallBarRenderer.java
(findRangeBounds): Reimplemented to account for the special treatment of
the value in the final category,
* source/org/jfree/data/general/DatasetUtilities.java
(findCumulativeRangeBounds): Include final category.
2008-03-27 David Gilbert <[email protected]>
Bug 1926517:
* source/org/jfree/chart/plot/CombinedDomainCategoryPlot.java:
(getDataRange): Override just to document,
* source/org/jfree/chart/plot/CombinedDomainXYPlot.java
(getDataRange): Added javadoc comment,
* source/org/jfree/chart/plot/CombinedRangeCategoryPlot.java
(getDataRange): Likewise,
* source/org/jfree/chart/plot/CombinedRangeXYPlot.java
(getDataRange): Likewise.
2008-03-27 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/category/BoxAndWhiskerRenderer.java
(drawHorizontalItem): Draw box outline using itemOutlinePaint/Stroke,
(drawVerticalItem): Likewise,
* source/org/jfree/chart/renderer/xy/XYBoxAndWhiskerRenderer.java
(lookupBoxPaint): New method,
(drawHorizontalItem): Do lookup for box fill paint,
(drawVerticalItem): Likewise.
2008-03-26 David Gilbert <[email protected]>
Patch 1918209:
* source/org/jfree/chart/axis/LogAxis.java
(createTickLabel): Changed from private to protected.
2008-03-25 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/CombinedDomainCategoryPlot.java
* source/org/jfree/chart/plot/CombinedDomainXYPlot.java
* source/org/jfree/chart/plot/CombinedRangeCategoryPlot.java
* source/org/jfree/chart/plot/CombinedRangeXYPlot.java
* source/org/jfree/chart/plot/CompassPlot.java
* source/org/jfree/chart/plot/ContourPlot.java
* source/org/jfree/chart/plot/MeterPlot.java
* source/org/jfree/chart/plot/MultiplePiePlot.java
* source/org/jfree/chart/plot/PiePlot.java
* source/org/jfree/chart/plot/PiePlot3D.java
* source/org/jfree/chart/plot/PolarPlot.java
* source/org/jfree/chart/plot/RingPlot.java
* source/org/jfree/chart/plot/SpiderWebPlot.java
* source/org/jfree/chart/plot/ThermometerPlot.java
* source/org/jfree/chart/plot/WaferMapPlot.java
Use fireChangeEvent() method all over.
2008-03-25 David Gilbert <[email protected]>
Patch 1914411:
* source/org/jfree/chart/plot/Plot.java
(fireChangeEvent): New method,
* source/org/jfree/chart/plot/CategoryPlot.java
* source/org/jfree/chart/plot/FastScatterPlot.java
* source/org/jfree/chart/plot/XYPlot.java:
Use fireChangeEvent() method all over.
2008-03-25 David Gilbert <[email protected]>
Patch 1913751:
* source/org/jfree/chart/plot/CategoryPlot.java
(addDomainMarker(int, CategoryMarker, Layer, boolean)): New method,
(removeDomainMarker(int, Marker, Layer, boolean)): Likewise,
(addRangeMarker(int, CategoryMarker, Layer, boolean)): Likewise,
(removeRangeMarker(int, Marker, Layer, boolean)): Likewise,
(addAnnotation(CategoryAnnotation, boolean)): Likewise,
(removeAnnotation(CategoryAnnotation, boolean)): Likewise.
2008-03-25 David Gilbert <[email protected]>
Patch 1913751:
* source/org/jfree/chart/plot/XYPlot.java
(addDomainMarker(int, Marker, Layer, boolean)): New method,
(removeDomainMarker(int, Marker, Layer, boolean)): Likewise,
(addRangeMarker(int, Marker, Layer, boolean)): Likewise,
(removeRangeMarker(int, Marker, Layer, boolean)): Likewise,
(addAnnotation(XYAnnotation, boolean)): Likewise,
(removeAnnotation(XYAnnotation, boolean)): Likewise.
2008-03-20 David Gilbert <[email protected]>
Bug 1920854:
* source/org/jfree/chart/plot/PiePlot3D.java
(draw): Move label drawing outside section loop.
2008-03-19 David Gilbert <[email protected]>
Patch 1902418:
* source/org/jfree/chart/axis/LogAxis.java
(refreshTicksVertical): Change tick type for major tick labels.
2008-03-19 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/PiePlot3D.java
(getMaximumExplodePercent): Check for null dataset,
(initialise): Likewise,
* tests/org/jfree/chart/plot/junit/PiePlot3DTests.java
(testDrawWithNullDataset): New test method.
2008-02-26 David Gilbert <[email protected]>
Patch 1901599:
* experimental/org/jfree/chart/annotations/XYTitleAnnotation.java
(draw): Check for null 'info' argument before adding entities,
(hashCode): Reimplemented,
* experimental/org/jfree/chart/annotations/junit/XYTitleAnnotationTests.java
(testDrawWithNullInfo): New test.
2008-02-26 David Gilbert <[email protected]>
Bug 1897580:
* source/org/jfree/data/DefaultIntervalCategoryDataset.java
(DefaultIntervalCategoryDataset(Comparable[], Comparable[], Number[][],
Number[][]): Initialise seriesKeys and categoryKeys to empty arrays instead
of null for empty dataset,
(setCategoryKeys): Fixed argument check to handle empty dataset.
2008-02-19 David Gilbert <[email protected]>
* source/org/jfree/chart/util/LogFormat.java
(powerLabel): New field,
(LogFormat(double, String, boolean)): Delegate to new constructor,
(LogFormat(double, String, String, boolean)): New constructor,
(format): Use new powerLabel,
(equals): New method override,
(clone): Likewise.
2008-02-18 David Gilbert <[email protected]>
Bug 1880114:
* source/org/jfree/chart/renderer/xy/VectorRenderer.java
(drawItem): Modify arrow-head for plot orientation.
2008-02-18 David Gilbert <[email protected]>
Patch 1871902 by Martin Hoeller:
* source/org/jfree/chart/plot/PolarPlot.java
(DEFAULT_ANGLE_TICK_UNIT_SIZE): New field,
(angleTickUnit): Likewise,
(PolarPlot(XYDataset, ValueAxis, PolarItemRenderer)): Initialise
angleTickUnit,
(getAngleTickUnit): New method,
(setAngleTickUnit): Likewise,
(refreshAngleTicks): Likewise,
(draw): Refresh angle tick list before drawing.
2008-02-15 David Gilbert <[email protected]>
Patch 1868745:
* source/org/jfree/chart/axis/LogAxis.java
(refreshTicksHorizontal): Adjust label anchor according to axis position,
(refreshTicksVertical): Likewise.
2008-02-15 David Gilbert <[email protected]>
Patch 1873328:
* source/org/jfree/chart/util/RelativeDateFormat.java
(showZeroHours): New field,
(positivePrefix): Likewise,
(RelativeDateFormat(long)): Initialise new fields,
(getShowZeroHours): New method,
(setShowZeroHours): Likewise,
(getPositivePrefix): Likewise,
(setPositivePrefix): Likewise,
(format): Apply positive prefix, and fix formatting for negative values,
(equals): Handle new fields,
(hashCode): Use positivePrefix.
2008-02-15 David Gilbert <[email protected]>
Bug 1873160:
* source/org/jfree/chart/plot/DialPlot.java
(draw): Fix clipping issues.
2008-02-14 David Gilbert <[email protected]>
Bug 1892419:
* source/org/jfree/chart/axis/LogAxis.java
(LogAxis(String)): Change default number of minor ticks.
2008-02-14 David Gilbert <[email protected]>
Patch 1874890 (Ulrich Voigt with contributions from Martin Hoeller):
* source/org/jfree/chart/renderer/xy/XYStepRenderer.java
(stepPoint): New field,
(getStepPoint): New method,
(setStepPoint): Likewise,
(drawItem): Calculate step point using new field,
(drawLine): New private method,
(equals): New method override,
(hashCode): Likewise.
2008-02-14 David Gilbert <[email protected]>
Includes patches 1866446 and 1888422 from Rob Van der Sanden:
* source/org/jfree/chart/renderer/category/BoxAndWhiskerRenderer.java
(maximumBarWidth): New field,
(BoxAndWhiskerRenderer): Initialise maximumBarWidth,
(setArtifactPaint): Simplify event firing,
(setFillBox): Likewise,
(setItemMargin): Likewise,
(getMaximumBarWidth): New method,
(setMaximumBarWidth): Likewise,
(initialise): Use new maximumBarWidth attribute,
(drawHorizontalItem): Use correct data area dimension, and check for
visibility of average marker,
(drawVerticalItem): Check for visibility of average marker,
(equals): Minor clean-up.
2008-02-14 David Gilbert <[email protected]>
Fixes bug 1892707:
* source/org/jfree/chart/text/TextBox.java
(draw): Correct alignment of content with respect to interior padding.
2007-12-20 David Gilbert <[email protected]>
Fixes bug 1848961:
* source/org/jfree/chart/renderer/category/GroupedStackedBarRenderer.java
(calculateBarW0): Use correct dataset index.
2007-12-04 David Gilbert <[email protected]>
* source/org/jfree/chart/JFreeChart.java
(createBufferedImage(int, int, ChartRenderingInfo)): Change image type,
(createBufferedImage(int, int, double, double, ChartRenderingInfo)):
Likewise.
2007-12-04 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/AbstractRenderer.java
(hashCode): Compute using more fields,
* source/org/jfree/chart/util/AbstractObjectList.java
(hashCode): Implemented,
* source/org/jfree/chart/util/HashUtilities.java
(hashCode(int, boolean)): Use Boolean.hashCode(),
* source/org/jfree/chart/util/PaintList.java
(hashCode): New method override.
2007-12-04 David Gilbert <[email protected]>
Bugs 1363043 and 1840139:
* source/org/jfree/chart/entity/ChartEntity.java
(getImageMapAreaTag): Escape toolTipText and urlText,
* source/org/jfree/chart/imagemap/ImageMapUtilities.java
(getImageMap): Escape name,
(htmlEscape): New method.
2007-12-04 David Gilbert <[email protected]>
Bug 1460195:
* source/org/jfree/chart/entity/ChartEntity.java
(getImageMapAreaTag): Add 'nohref' attribute when there is no URL,
(equals): Reorganised,
(hashCode): Implemented.
2007-12-03 David Gilbert <[email protected]>
* source/org/jfree/data/xy/XYSeriesCollection.java
(getSeries(Comparable)): New method,
* tests/org/jfree/data/xy/junit/XYSeriesCollectionTests.java
(testGetSeriesByKey): New test method.
2007-11-30 David Gilbert <[email protected]>
* source/org/jfree/data/xy/XYDataItem.java
(getXValue): New method,
(getYValue): Likewise,
(toString): Likewise.
2007-11-30 David Gilbert <[email protected]>
* source/org/jfree/chart/LocalizationBundle_it.properties:
Fixed errors.
2007-11-29 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/MeterPlot.java
(writeObject): Handle dialOutlinePaint,
(readObject): Likewise,
* tests/org/jfree/chart/plot/junit/MeterPlotTests.java
(testEquals): Updated to test dialOutlinePaint,
(testSerialization1): Likewise.
2007-11-27 David Gilbert <[email protected]>
* source/org/jfree/data/ComparableObjectSeries.java
(clear): Changed from protected to public,
* source/org/jfree/data/xy/VectorSeries.java
(clear): Removed,
* tests/org/jfree/data/time/ohlc/junit/OHLCSeriesTests.java
(testClear): New test method,
* tests/org/jfree/data/xy/junit/VectorSeriesTests.java
(testClear): Likewise,
* tests/org/jfree/data/xy/junit/XIntervalSeriesTests.java
(testClear): Likewise,
* tests/org/jfree/data/xy/junit/XYIntervalSeriesTests.java
(testClear): Likewise,
* tests/org/jfree/data/xy/junit/YIntervalSeriesTests.java
(testClear): Likewise.
2007-11-27 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/CombinedDomainXYPlot.java
(setFixedRangeAxisSpaceForSubplots): Call new method in XYPlot,
* source/org/jfree/chart/plot/CombinedRangeXYPlot.java
(setFixedDomainAxisSpaceForSubplots): Likewise,
* source/org/jfree/chart/plot/XYPlot.java
(setFixedDomainAxisSpace(AxisSpace)): Delegate to new method,
(setFixedDomainAxisSpace(AxisSpace, boolean)): New method,
(setFixedRangeAxisSpace(AxisSpace)): Delegate to new method,
(setFixedRangeAxisSpace(AxisSpace, boolean)): New method.
2007-11-27 David Gilbert <[email protected]>
* swt/org/jfree/experimental/swt/SWTGraphics2D.java:
(drawImage(BufferedImage, BufferedImageOp, int, int)): Updated for method
moved to SWTUtils,
(drawImage(Image, int, int, ImageObserver)): Implemented,
(drawImage(Image, int, int, int, int, ImageObserver)): Likewise,
(drawImage(Image, int, int, Color, ImageObserver)): Likewise,
(drawImage(Image, int, int, int, int, Color, ImageObserver)): Likewise,
(convertToSWT(BufferedImage)): Moved to SWTUtils.java,
* swt/org/jfree/experimental/swt/SWTUtils.java:
(convertAWTImageToSWT): New method,
(convertToSWT(BufferedImage)): Moved from SWTGraphics2D.java.
2007-11-23 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/dial/DialPointer.java
(Pointer.fillPaint): New attribute,
(Pointer.outlinePaint): Likewise,
(Pointer(int)): Initialize new fields,
(getFillPaint): New method,
(setFillPaint): Likewise,
(getOutlinePaint): Likewise,
(setOutlinePaint): Likewise,
(draw): Use new attributes,
(equals): Check new fields,
(hashCode): Likewise,
(writeObject): Handle serialization for new fields,
(readObject): Likewise,
* tests/org/jfree/chart/plot/dial/junit/DialPointerTests.java
(testEqualsPointer): New test method,
(testSerialization2): Likewise.
2007-11-22 David Gilbert <[email protected]>
Fix for bug 1832432:
* source/org/jfree/data/time/TimeSeries.java
(clone): Reimplemented.
2007-11-22 David Gilbert <[email protected]>
* source/org/jfree/data/DefaultKeyedValues.java
(removeValue): Always rebuild index,
* source/org/jfree/data/DefaultKeyedValues2D.java
(removeColumn(Comparable)): Added argument checks, and protect against
rows not containing the specified key,
* tests/org/jfree/data/category/junit/DefaultCategoryDatasetTests.java
(testBug1835955): New method,
* tests/org/jfree/data/junit/DefaultKeyedValues2DTests.java
(testRemoveColumnByKey): New method,
* tests/org/jfree/data/junit/DefaultKeyedValuesTests.java
(testGetIndex2): New method.
2007-11-22 David Gilbert <[email protected]>
* source/org/jfree/data/xy/XYSeries.java
(clone): Reimplemented,
* tests/org/jfree/data/xy/junit/XYSeriesTests.java
(testCloning2): New method,
(testCloning3): Likewise.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/DatasetRenderingOrder.java
(hashCode): Implemented,
* source/org/jfree/chart/plot/DialShape.java
(hashCode): Likewise,
* source/org/jfree/chart/plot/PlotOrientation.java
(hashCode): Likewise,
* source/org/jfree/chart/plot/SeriesRenderingOrder.java
(hashCode): Likewise.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/axis/DateAxis.java
(previousStandardDate): Return dates already fetched.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/CategoryAxis.java
(equalPaintMaps): Use entrySet rather than keySet.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/PieLabelRecord.java
(equals): Implemented.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/Outlier.java
(equals): Implemented.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/StandardXYItemRenderer.java
(setBaseShapesVisible): Call fireChangeEvent() instead of notifyListeners(),
(setPlotLines): Likewise,
(setGapThresholdType): Likewise,
(setGapThreshold): Likewise,
(setPlotImages): Likewise,
(setLegendLine): Likewise.
2007-11-21 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/PiePlot.java
(DEFAULT_INTERIOR_GAP): Modified default value,
(maximumLabelWidth): Likewise,
(labelGap): Likewise,
(labelLinkMargin): Likewise,
(DEBUG_DRAW_INTERIOR): New debug flag,
(DEBUG_DRAW_LINK_AREA): Likewise,
(DEBUG_DRAW_PIE_AREA): Likewise,
(PiePlot(PieDataset)): Removed background paint setting,
(drawPie): Modified label position calculations and added debug code,
(drawLabels): Modified label width calculation,
* source/org/jfree/chart/plot/PiePlot3D.java
(depthFactor): Changed default value,
(draw): Modified chart dimension calculations and added debug code, in line
with changes made to the PiePlot class.
2007-11-19 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/dial/StandardDialScale.java
(getLowerBound): New method,
(setLowerBound): Likewise,
(getUpperBound): Likewise,
(setUpperBound): Likewise,
(getMinorTickStroke): Likewise,
(setMinorTickStroke): Likewise.
2007-11-12 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/XYPlot.java
(equals): Added check for domain/rangeTickBandPaint,
* source/org/jfree/chart/renderer/xy/AbstractXYItemRenderer.java
(fillDomainGridBand): Handle plot orientation properly,
(fillRangeGridBand): Likewise.
2007-11-12 David Gilbert <[email protected]>
Patch 1827829 from Richard West:
* source/org/jfree/chart/renderer/xy/XYBarRenderer.java
(drawItemLabel): Fixed NPE.
2007-11-09 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/XYDotRenderer.java
(legendShape): New field,
(XYDotRenderer): Initialise new field,
(getLegendShape): New method,
(setLegendShape): Likewise,
(getLegendItem): New method override,
(equals): Updated for new field,
(readObject): New method,
(writeObject): New method.
2007-11-05 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/XYPlot.java
(removeDomainMarker(Marker)): New method,
(removeDomainMarker(Marker, Layer)): Likewise,
(removeDomainMarker(int, Marker, Layer)): Likewise,
(removeRangeMarker(Marker)): New method,
(removeRangeMarker(Marker, Layer)): Likewise,
(removeRangeMarker(int, Marker, Layer)): Likewise.
2007-11-05 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/CategoryPlot.java
(removeDomainMarker(Marker)): New method,
(removeDomainMarker(Marker, Layer)): Likewise,
(removeDomainMarker(int, Marker, Layer)): Likewise,
(removeRangeMarker(Marker)): New method,
(removeRangeMarker(Marker, Layer)): Likewise,
(removeRangeMarker(int, Marker, Layer)): Likewise.
2007-10-31 David Gilbert <[email protected]>
* source/org/jfree/data/ComparableObjectSeries.java
(hashCode): Faster implementation,
* source/org/jfree/data/time/TimeSeries.java
(hashCode): Likewise,
* source/org/jfree/data/xy/XYSeriesTests.java
(hashCode): Likewise.
2007-10-29 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/dial/SimpleDialFrame.java:
Renamed StandardDialFrame.java.
2007-10-25 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/xy/XYSplineAndShapeRenderer.java
(drawPrimaryLineAsPath): Check for duplicated control points,
(ControlPoint.equals): New method override.
2007-10-25 David Gilbert <[email protected]>
* source/org/jfree/chart/plot/CategoryPlot.java
(getDomainAxisIndex): Added argument check,
(getRangeAxisIndex): Likewise.
2007-10-25 David Gilbert <[email protected]>
* source/org/jfree/chart/axis/StandardTickUnitSource.java:
Implemented Serializable,
(StandardTickUnitSource): Added explicit constructor,
(equals): New method override,
(hashCode): Likewise.
2007-10-25 David Gilbert <[email protected]>
* source/org/jfree/chart/ChartPanel.java
(defaultDirectoryForSaveAs): New field,
(ChartPanel(JFreeChart, int, int, int, int, int, int, boolean, boolean,
boolean, boolean, boolean, boolean)): Initialise new field,
(getDefaultDirectoryForSaveAs): New method,
(setDefaultDirectoryForSaveAs): Likewise,
(doSaveAs): Apply default directory.
2007-10-24 David Gilbert <[email protected]>
* experimental/org/jfree/experimental/chart/plot/dial/DialPlot.java
(pointers): New field,
(DialPlot): Delegate to new constructor,
(DialPlot(ValueDataset)): New constructor,
(addPointer): New method,
(getPointerIndex): Likewise,
(removePointer(int)): Likewise,
(removePointer(DialPointer)): Likewise,
(getPointerForDataset): Likewise,
(draw): Draw pointers in their own layer,
(equals): Check new pointers field,
* experimental/org/jfree/experimental/chart/plot/dial/DialPointer.java:
Implemented PublicCloneable,
(DialPointer): Changed to protected,
(DialPointer(int)): Likewise, and changed default radius,
(Pin.setPaint): Added argument check,
(Pin.setStroke): Likewise,
(Pointer(int)): Removed radius setting,
* experimental/org/jfree/experimental/chart/plot/dial/DialTextAnnotation.java
(getAnchor): New method,
(setAnchor): Likewise,
* experimental/org/jfree/experimental/chart/plot/dial/DialValueIndicator.java
(DialValueIndicator): New constructor,
(DialValueIndicator(int, String)): Removed string argument,
(setDatasetIndex): Fire change event,
(setTemplateValue): Check for null argument,
* experimental/org/jfree/experimental/chart/plot/dial/StandardDialFrame.java
(setInnerRadius): Added argument check,
(setOuterRadius): Likewise,
* experimental/org/jfree/experimental/chart/plot/dial/StandardDialRange.java
(scaleIndex): New field,
(StandardDialRange(double, double)): Added field initialisations,
(getScaleIndex): New method,
(setScaleIndex): Likewise,
(draw): Get the correct scale,
(equals): Updated for new field,
* experimental/org/jfree/experimental/chart/plot/dial/StandardDialScale.java
(minorTickPaint): New field,
(minorTickStroke): Likewise,
(tickLabelFormatter): Likewise,
(StandardDialScale): Updated for modified constructor signature,
(StandardDialScale(double, double, double, double)): Added two new
arguments to signature,
(setMajorTickLength): Added argument check,
(setMinorTickCount): Likewise,
(setMinorTickLength): Likewise,
(getMinorTickPaint): New method,
(setMinorTickPaint): Likewise,
(getTickLabelFormatter): Likewise,
(setTickLabelFormatter): Likewise,
(draw): Fix major tick length, format labels with new formatter,
(equals): Updated for new fields,
(hashCode): Implemented,
(writeObject): Handle new fields,
(readObject): Likewise.
2007-10-23 David Gilbert <[email protected]>
* swt/org/jfree/experimental/swt/SWTGraphics2D.java:
Lots of API doc updates plus
(hints): New field,
(SWTGraphics2D): Initialise new field,
(getRenderingHint): Implemented,
(setRenderingHint): Likewise,
(getRenderingHints): Likewise,
(addRenderingHints): Likewise,
(setRenderingHints): Likewise,
(drawPolygon): Likewise,
(drawPolyline): Likewise,
(drawOval): Likewise,
(drawArc): Likewise,
(drawRoundRect): Likewise,
(clearRect): Implemented,
(fillRoundRect): Likewise,
(fillOval): Likewise,
(fillArc): Likewise.
2007-10-23 David Gilbert <[email protected]>
* source/org/jfree/chart/renderer/AbstractRenderer.java
(lookupSeriesPaint): Call accessor methods for per-series paint,
(lookupSeriesFillPaint): Likewise,
(lookupSeriesOutlinePaint): Likewise,
(lookupSeriesStroke): Likewise,
(lookupSeriesOutlineStroke): Likewise,
(lookupSeriesStroke): Likewise.
2007-10-17 David Gilbert <[email protected]>
* experimental/org/jfree/experimental/chart/plot/dial/AbstractDialLayer.java
(equals): New method override,
(clone): Likewise,
* experimental/org/jfree/experimental/chart/plot/dial/DialBackground.java
(equals): Added call to super.equals();
* experimental/org/jfree/experimental/chart/plot/dial/DialCap.java
(equals): Added call to super.equals();
* experimental/org/jfree/experimental/chart/plot/dial/DialPlot.java
(setBackground): Fix listener registration,
(setCap): Likewise,
(setDialFrame): Likewise,
(addLayer): Likewise,
(getLayerIndex(DialLayer)): New method,
(removeLayer(int)): Likewise,
(removeLayer(DialLayer)): Likewise,
(addScale): Fix listener registration,
* experimental/org/jfree/experimental/chart/plot/dial/DialPointer.java
(equals): New method override,
(Pin.equals): Likewise,
(Pin.readObject): New method,
(Pin.writeObject): Likewise,
(Pointer.equals): New method override,
* experimental/org/jfree/experimental/chart/plot/dial/DialScale.java:
Now extends DialLayer,
* experimental/org/jfree/experimental/chart/plot/dial/DialTextAnnotation.java
(equals): Added call to super.equals();
* experimental/org/jfree/experimental/chart/plot/dial/DialValueIndicator.java
(equals): Added call to super.equals();
* experimental/org/jfree/experimental/chart/plot/dial/SimpleDialFrame.java
(equals): Added call to super.equals();
* experimental/org/jfree/experimental/chart/plot/dial/StandardDialFrame.java
(equals): Added call to super.equals();
* experimental/org/jfree/experimental/chart/plot/dial/StandardDialRange.java
(increment): Removed field,
(setLowerBound): Added argument check,
(setUpperBound): Likewise,
(setBounds): New method,
(equals): Updated,
(hashCode): Likewise,
* experimental/org/jfree/experimental/chart/plot/dial/StandardDialScale.java
(setTickRadius): Added argument check,
(setMajorTickIncrement): Likewise,
(setTickLabelPaint): Likewise,
(equals): Updated.