3
I Use This!
Activity Not Available

Commits : Listings

Analyzed 11 months ago. based on code collected 11 months ago.
Jan 20, 2023 — Jan 20, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Removed AbstractAreaRenderer.punch(Shape, List<DataPoint>). Punching is now performed in the XYPlot. More... over 9 years ago
Moved the punching functionality of AbstractLineRenderer2D.punch(Shape, Iterable) to XYPlotArea2D. Added AbstractLinerRenderer2D.stroke(Shape) which containes the part of the old punch method that created a stroked shape. More... over 9 years ago
Removed DataPoint.drawable. More... over 9 years ago
Fixed a bug that could cause an exception when rendering a legend in a BarPlot without a PointRenderer. More... over 9 years ago
BarPlot no longer uses DataPoint.drawable. More... over 9 years ago
BoxPlot no longer uses DataPoint.drawable. More... over 9 years ago
XYPlot no longer uses DataPoint.drawable. More... over 9 years ago
Removed labalDrawable property from DataPoint. More... over 9 years ago
XYPlot no longer uses the labelDrawable property of a DataPoint. More... over 9 years ago
Fixed a bug that caused an error when comparing DataAccessor objects with equals(Object). More... over 9 years ago
Added an example using multiple point renderers. More... over 9 years ago
Removed XYPlot.getPointRenderer(DataSource). More... over 9 years ago
Changed XYPlot.setPointRenderer(DataSource, PointRenderer) to XYPlot.setPointRenderers(DataSource, List<PointRenderer>). Added helper method XYPlot.setPointRenderers(DataSource, PointRenderer...). More... over 9 years ago
Added a method XYPlot.removePointRenderer(DataSource, PointRenderer) that removes a PointRenderer for the specified DataSource. More... over 9 years ago
Added a method XYPlot.addPointRenderer(DataSource, PointRenderer) that adds a PointRenderer for the specified DataSource. More... over 9 years ago
Added a method XYPlot.getPointRenderers(DataSource) that returns a list of PointRenderers that are used to display the specified DataSource. More... over 9 years ago
XYPlot internally stores a list of point renderers per data source. More... over 9 years ago
Fixed unit tests for Dimension2DTest and Insets2DTest. More... over 9 years ago
Improved test for AbstractDataSource.getName(). More... over 9 years ago
Moved DataSource.setName(String) to MutableDataSource and adjusted unit tests. AbstractDataSource.name is now a private property, but has a protected setter. More... over 9 years ago
DataSeries makes use of the constructor of AbstractDataSource to set the name. More... over 9 years ago
Added a constructor to AbstractDataSource that takes a String argument as a name. More... over 9 years ago
Moved the "name" property from DataSeries to DataSource. Added a test for AbstractDataSource. More... over 9 years ago
Moved methods from KernelUtils to Kernel. More... over 9 years ago
KernelTest makes use of TestUtils.DELTA instead of specifying its own floating point accuracy. More... over 9 years ago
Moved Insets2D, Dimension2D, Location, and Orientation from de.erichseifert.gral.util to de.erichseifert.gral.graphics. More... over 9 years ago
Moved layouts to a separate package. More... over 9 years ago
Removed obsolete class Tuple. More... over 9 years ago
The mapping of columns to column labels now uses the Column class instead of Tuple. More... over 9 years ago
Corrected javadoc comment. More... over 9 years ago