All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.plots.Plotable2D Maven / Gradle / Ivy

Go to download

finmath lib plot extensions provide convenient plotting methods by providing consistent wrappers to plot libraries (like JFreeChart or JavaFX).

The newest version!
/*
 * (c) Copyright Christian P. Fries, Germany. Contact: [email protected].
 *
 * Created on 21 May 2018
 */
package net.finmath.plots;

import java.util.List;

import net.finmath.plots.axis.NumberAxis;

/**
 * A two dimensional plotable.
 *
 * @author Christian Fries
 */
public interface Plotable2D extends Plotable {

	List getSeries();

	GraphStyle getStyle();

	default NumberAxis getDomainAxis() { return null; }

	default NumberAxis getRangeAxis() { return null; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy