public final class ChartFactory extends Object
Modifier and Type | Method and Description |
---|---|
static Chart |
newBarChart(AxisData<?,?> data)
Creates a bar chart.
|
static Chart |
newBarChart(AxisData<?,?> data,
BarChartOptions options)
Creates a bar chart.
|
static Chart |
newBarChart(AxisData<?,?> data,
BarChartOptions options,
DisplayOptions displayOptions)
Creates a bar chart.
|
static Chart |
newBarChart(AxisData<?,?> data,
DisplayOptions options)
Creates a bar chart.
|
static Chart |
newCategoryBarChart(CategoryBarChartData data)
Creates a category bar chart.
|
static Chart |
newCategoryBarChart(CategoryBarChartData data,
CategoryBarChartOptions options)
Creates a category bar chart.
|
static Chart |
newCategoryBarChart(CategoryBarChartData data,
CategoryBarChartOptions options,
DisplayOptions displayOptions)
Creates a category bar chart.
|
static Chart |
newCategoryBarChart(CategoryBarChartData data,
DisplayOptions displayOptions)
Creates a category bar chart.
|
static Chart |
newLineChart(AxisData<?,?> data)
Creates a line chart.
|
static Chart |
newLineChart(AxisData<?,?> data,
DisplayOptions displayOptions)
Creates a line chart.
|
static Chart |
newLineChart(AxisData<?,?> data,
LineChartOptions options)
Creates a line chart.
|
static Chart |
newLineChart(AxisData<?,?> data,
LineChartOptions options,
DisplayOptions displayOptions)
Creates a line chart.
|
static Chart |
newPieChart(PieChartData data)
Creates a pie chart.
|
static Chart |
newPieChart(PieChartData data,
DisplayOptions displayOptions)
Creates a pie chart.
|
static Chart |
newPieChart(PieChartData data,
PieChartOptions options)
Creates a pie chart.
|
static Chart |
newPieChart(PieChartData data,
PieChartOptions options,
DisplayOptions displayOptions)
Creates a pie chart.
|
static Chart |
newSparklineChart(AxisData<?,?> data)
Creates a sparkline chart.
|
static Chart |
newSparklineChart(AxisData<?,?> data,
DisplayOptions displayOptions)
Creates a sparkline chart.
|
static Chart |
newSparklineChart(AxisData<?,?> data,
SparklineChartOptions options)
Creates a sparkline chart.
|
static Chart |
newSparklineChart(AxisData<?,?> data,
SparklineChartOptions options,
DisplayOptions displayOptions)
Creates a sparkline chart.
|
public static Chart newBarChart(AxisData<?,?> data)
Multiple bars, of potentially different point data, are shown on the same axis.
public static Chart newBarChart(AxisData<?,?> data, BarChartOptions options)
Multiple bars, of potentially different point data, are shown on the same axis.
public static Chart newBarChart(AxisData<?,?> data, BarChartOptions options, DisplayOptions displayOptions)
Multiple bars, of potentially different point data, are shown on the same axis.
public static Chart newBarChart(AxisData<?,?> data, DisplayOptions options)
Multiple bars, of potentially different point data, are shown on the same axis.
public static Chart newCategoryBarChart(CategoryBarChartData data)
A category bar chart represents information similar in structure to a pie chart.
Categories are arranged on the abscissa (the x axis), and bars for each category show the
numerical value on the ordinate (the y axis).
While a pie chart can only represent a single numerical value for the same category, a
category bar chart can represent multiple categories using a bar for each one.
public static Chart newCategoryBarChart(CategoryBarChartData data, CategoryBarChartOptions options)
A category bar chart represents information similar in structure to a pie chart.
Categories are arranged on the abscissa (the x axis), and bars for each category show the
numerical value on the ordinate (the y axis).
While a pie chart can only represent a single numerical value for the same category, a
category bar chart can represent multiple categories using a bar for each one.
public static Chart newCategoryBarChart(CategoryBarChartData data, CategoryBarChartOptions options, DisplayOptions displayOptions)
A category bar chart represents information similar in structure to a pie chart.
Categories are arranged on the abscissa (the x axis), and bars for each category show the
numerical value on the ordinate (the y axis).
While a pie chart can only represent a single numerical value for the same category, a
category bar chart can represent multiple categories using a bar for each one.
public static Chart newCategoryBarChart(CategoryBarChartData data, DisplayOptions displayOptions)
A category bar chart represents information similar in structure to a pie chart.
Categories are arranged on the abscissa (the x axis), and bars for each category show the
numerical value on the ordinate (the y axis).
While a pie chart can only represent a single numerical value for the same category, a
category bar chart can represent multiple categories using a bar for each one.
public static Chart newLineChart(AxisData<?,?> data)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newLineChart(AxisData<?,?> data, DisplayOptions displayOptions)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newLineChart(AxisData<?,?> data, LineChartOptions options)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newLineChart(AxisData<?,?> data, LineChartOptions options, DisplayOptions displayOptions)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newPieChart(PieChartData data)
public static Chart newPieChart(PieChartData data, DisplayOptions displayOptions)
public static Chart newPieChart(PieChartData data, PieChartOptions options)
public static Chart newPieChart(PieChartData data, PieChartOptions options, DisplayOptions displayOptions)
public static Chart newSparklineChart(AxisData<?,?> data)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newSparklineChart(AxisData<?,?> data, DisplayOptions displayOptions)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newSparklineChart(AxisData<?,?> data, SparklineChartOptions options)
Multiple points that may be part of multiple lines are shown on the same axis.
public static Chart newSparklineChart(AxisData<?,?> data, SparklineChartOptions options, DisplayOptions displayOptions)
Multiple points that may be part of multiple lines are shown on the same axis.