Package pulse.ui.components
Class Chart
- java.lang.Object
-
- pulse.ui.components.Chart
-
- All Implemented Interfaces:
Serializable
public class Chart extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Chart()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.jfree.chart.ChartPanel
getChartPanel()
org.jfree.chart.plot.XYPlot
getChartPlot()
double
getOpacity()
boolean
isResidualsShown()
boolean
isZeroApproximationShown()
void
plot(SearchTask task, boolean extendedCurve)
void
plotSingle(HeatingCurve curve)
org.jfree.data.xy.XYSeries
residuals(Calculation calc)
org.jfree.data.xy.XYSeries
series(HeatingCurve curve, String title, boolean extendedCurve)
org.jfree.data.xy.XYSeries
series(ExperimentalData curve, String title, boolean extendedCurve)
static void
setAxisFontColor(org.jfree.chart.axis.Axis axis, Color color)
void
setOpacity(float opacity)
void
setResidualsShown(boolean residualsShown)
void
setZeroApproximationShown(boolean zeroApproximationShown)
double
xCoord(MouseEvent e)
-
-
-
Method Detail
-
xCoord
public double xCoord(MouseEvent e)
-
setAxisFontColor
public static void setAxisFontColor(org.jfree.chart.axis.Axis axis, Color color)
-
plot
public void plot(SearchTask task, boolean extendedCurve)
-
plotSingle
public void plotSingle(HeatingCurve curve)
-
series
public org.jfree.data.xy.XYSeries series(HeatingCurve curve, String title, boolean extendedCurve)
-
series
public org.jfree.data.xy.XYSeries series(ExperimentalData curve, String title, boolean extendedCurve)
-
residuals
public org.jfree.data.xy.XYSeries residuals(Calculation calc)
-
setOpacity
public void setOpacity(float opacity)
-
getOpacity
public double getOpacity()
-
isResidualsShown
public boolean isResidualsShown()
-
setResidualsShown
public void setResidualsShown(boolean residualsShown)
-
isZeroApproximationShown
public boolean isZeroApproximationShown()
-
setZeroApproximationShown
public void setZeroApproximationShown(boolean zeroApproximationShown)
-
getChartPanel
public org.jfree.chart.ChartPanel getChartPanel()
-
getChartPlot
public org.jfree.chart.plot.XYPlot getChartPlot()
-
-