-
Methods in org.knowm.xchart that return XYChart
| Modifier and Type |
Method |
Description |
XYChart |
XYChartBuilder.build() |
return fully built XYChart
|
static XYChart |
QuickChart.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 |
QuickChart.getChart(String chartTitle,
String xTitle,
String yTitle,
String seriesName,
double[] xData,
double[] yData) |
Creates a Chart with default style
|
static XYChart |
QuickChart.getChart(String chartTitle,
String xTitle,
String yTitle,
String seriesName,
List<? extends Number> xData,
List<? extends Number> yData) |
Creates a Chart with default style
|
static XYChart |
CSVImporter.getChartFromCSVDir(String path2Directory,
CSVImporter.DataOrientation dataOrientation,
int width,
int height) |
|
static XYChart |
CSVImporter.getChartFromCSVDir(String path2Directory,
CSVImporter.DataOrientation dataOrientation,
int width,
int height,
Styler.ChartTheme chartTheme) |
|