
com.frontangle.ichart.chart.datapoint.DataPointWithMagnitude Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iceberg-charts Show documentation
Show all versions of iceberg-charts Show documentation
A Java charting library using Java2D
The newest version!
package com.frontangle.ichart.chart.datapoint;
/**
* Used for bubble chart as bubble point (magnitutde is size of bubble)
*
* @author oliver.watkins
*/
public class DataPointWithMagnitude extends DataPoint {
public double magnitude;
public String name;
public DataPointWithMagnitude(double x, double y, double magnitude) {
super(x, y);
this.magnitude = magnitude;
}
public DataPointWithMagnitude(String name, double x, double y, double magnitude) {
super(x, y);
this.magnitude = magnitude;
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy