Package org.jamesii.resultreport.dataview

Examples of org.jamesii.resultreport.dataview.LineChartDataView


            "Var. 2", "Var. III", "Var. Four" }));

    testSection.addDataView(new HistogramDataView(testData[1],
        "The histogram data view.", "The title", "The x-label", "The y-label"));

    testSection.addDataView(new LineChartDataView(testData,
        "The line chart data view.", "A line chart", new String[] { "The time",
            "The observed value" }, new String[] { "Variable One", "Var. 2",
            "Var. III" }));

    ResultReportRenderer tutorialRenderer = new RTexResultReportRenderer();
View Full Code Here


        "The \\texttt{HistogramDataView}", "The title", "The x-label",
        "The y-label"));
  }

  private void addLineChart(ResultReportSection testChapter) {
    testChapter.addDataView(new LineChartDataView(testData,
        "The \\texttt{LineChartDataView}", "A line chart", new String[] {
            "The time", "The observed value" }, new String[] { "Variable One",
            "Var. 2", "Var. III" }));
  }
View Full Code Here

        plottableInterestData[1][actual] =
            ilsObserver.getInterestingPerformance().get(i).get(j).getB();
        actual++;
      }
    }
    section.addDataView(new LineChartDataView(plottableInterestData, "",
        "Interesting performance data", new String[] { "Calculation number",
            "Performance" }, new String[] { "performance of Hillclimbing" }));
  }
View Full Code Here

TOP

Related Classes of org.jamesii.resultreport.dataview.LineChartDataView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.