public final class QuickChart extends Object
Modifier and Type | Method and Description |
---|---|
static XYChart |
getChart(String chartTitle,
String xTitle,
String yTitle,
String[] seriesNames,
double[] xData,
double[][] yData)
Creates a Chart with multiple Series for the same X-Axis data with default style
|
static XYChart |
getChart(String chartTitle,
String xTitle,
String yTitle,
String seriesName,
double[] xData,
double[] yData)
Creates a Chart with default style
|
static XYChart |
getChart(String chartTitle,
String xTitle,
String yTitle,
String seriesName,
List<? extends Number> xData,
List<? extends Number> yData)
Creates a Chart with default style
|
public static XYChart getChart(String chartTitle, String xTitle, String yTitle, String seriesName, double[] xData, double[] yData)
chartTitle
- the Chart titlexTitle
- The X-Axis titleyTitle
- The Y-Axis titleseriesNames
- The name of the seriesxData
- An array containing the X-Axis datayData
- An array containing Y-Axis datapublic static XYChart getChart(String chartTitle, String xTitle, String yTitle, String[] seriesNames, double[] xData, double[][] yData)
chartTitle
- the Chart titlexTitle
- The X-Axis titleyTitle
- The Y-Axis titleseriesNames
- An array of the name of the multiple seriesxData
- An array containing the X-Axis datayData
- An array of double arrays containing multiple Y-Axis datapublic static XYChart getChart(String chartTitle, String xTitle, String yTitle, String seriesName, List<? extends Number> xData, List<? extends Number> yData)
chartTitle
- the Chart titlexTitle
- The X-Axis titleyTitle
- The Y-Axis titleseriesNames
- The name of the seriesxData
- A Collection containing the X-Axis datayData
- A Collection containing Y-Axis dataCopyright © 2011–2016 Knowm Inc.. All rights reserved.