net.osomahe.coinacrobat.api.graph.boundary.Graphs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coinacrobat-api Show documentation
Show all versions of coinacrobat-api Show documentation
The project with APIs to be able to create own strategy
package net.osomahe.coinacrobat.api.graph.boundary;
/**
* Interface for plotting a graph.
*
* @author m.tkadlec
*/
public interface Graphs {
/**
* By default, X-axis is a timeline, so the value will be plotted as Y-axis value on the current time
*
* @param graphName defines the name of the graph. All values with the same name will be plotted to the same graph
* @param value to be plotted
*/
void plot(String graphName, Double value);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy