Search in sources :

Example 1 with Chart2D

use of info.monitorenter.gui.chart.Chart2D in project ACS by ACS-Community.

the class RemoteResponseWindow method getTrend.

/**
 * Return the Trend property value.
 * @return com.cosylab.gui.chart.BaseChart
 */
/* WARNING: THIS METHOD WILL BE REGENERATED. */
private Chart2D getTrend() {
    if (ivjTrend == null) {
        try {
            ivjTrend = new Chart2D();
            ivjTrend.setName("Trend");
            ivjTrend.getAxisX().getAxisTitle().setTitle("");
            ivjTrend.getAxisY().getAxisTitle().setTitle("");
            trace = new Trace2DLtd(maxLines);
            trace.setName("");
            ivjTrend.addTrace(trace);
            trace.addTracePainter(new TracePainterDisc());
        // user code begin {1}
        // user code end
        } catch (java.lang.Throwable ivjExc) {
            // user code begin {2}
            // user code end
            handleException(ivjExc);
        }
    }
    return ivjTrend;
}
Also used : Trace2DLtd(info.monitorenter.gui.chart.traces.Trace2DLtd) TracePainterDisc(info.monitorenter.gui.chart.traces.painters.TracePainterDisc) Chart2D(info.monitorenter.gui.chart.Chart2D)

Aggregations

Chart2D (info.monitorenter.gui.chart.Chart2D)1 Trace2DLtd (info.monitorenter.gui.chart.traces.Trace2DLtd)1 TracePainterDisc (info.monitorenter.gui.chart.traces.painters.TracePainterDisc)1