Skip to content
Snippets Groups Projects
Commit 4bbff47a authored by Richeeyyy's avatar Richeeyyy
Browse files

Make classes BarChart and Diagram implement Renderable

parent a57bfa58
No related branches found
No related tags found
1 merge request!11Feat/csv data importer overhaul
......@@ -2,14 +2,15 @@ package de.tudresden.inf.mci.brailleplot.diagrams;
import de.tudresden.inf.mci.brailleplot.datacontainers.CategorialPointListList;
import de.tudresden.inf.mci.brailleplot.datacontainers.PointListList;
import de.tudresden.inf.mci.brailleplot.rendering.Renderable;
import java.util.List;
/**
* Representation of a bar chart with basic data functions.
* Representation of a bar chart with basic data functions. Implements Renderable.
* @author Richard Schmidt
*/
public class BarChart /*implements Renderable*/ {
public class BarChart implements Renderable {
private CategorialPointListList mP;
public BarChart(final CategorialPointListList p) {
......
package de.tudresden.inf.mci.brailleplot.diagrams;
import de.tudresden.inf.mci.brailleplot.datacontainers.PointListList;
import de.tudresden.inf.mci.brailleplot.rendering.Renderable;
/**
* General representation of both scatter and line plots with basic data functions. Classes LinePlot and ScatterPlot extend this class.
* Implements Renderable.
*
* @author Richard Schmidt
*/
public class Diagram /*implements Renderable*/ {
public class Diagram implements Renderable {
public PointListList mP;
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment