public final class Bubble
extends java.lang.Object
| Modifier and Type | Method | Description |
|---|---|---|
static void |
show(double[] x,
double[] y,
double[] data) |
Shows a bubble plot with the title "Bubbleplot" and data from the parameter.
|
static void |
show(java.lang.String chartTitle,
double[] x,
double[] y,
double[] data) |
Shows a bubble plot with the give title and data from the parameter.
|
static void |
show(java.lang.String chartTitle,
double[] x,
java.lang.String xAxis,
double[] y,
java.lang.String yAxis,
double[] data) |
Shows a bubble plot with the give title and data from the parameter.
|
static void |
show(java.lang.String chartTitle,
NumberColumn x,
java.lang.String xAxis,
NumberColumn y,
java.lang.String yAxis,
NumberColumn data) |
Shows a bubble plot with the chart title.
|
static void |
show(java.lang.String chartTitle,
NumberColumn x,
NumberColumn y,
NumberColumn data) |
Shows a bubble plot with the chart title.
|
static void |
show(NumberColumn x,
NumberColumn y,
NumberColumn data) |
Shows a bubble plot where the chart title will be "Bubbleplot" and titles
for x and y axis will be taken from the columns.
|
public static void show(NumberColumn x, NumberColumn y, NumberColumn data)
x - column for the x axisy - column for the y axisdata - column for the bubblespublic static void show(java.lang.String chartTitle,
NumberColumn x,
NumberColumn y,
NumberColumn data)
chartTitle - title for the chartx - column for the x axisy - column for the y axisdata - column for the bubblespublic static void show(java.lang.String chartTitle,
NumberColumn x,
java.lang.String xAxis,
NumberColumn y,
java.lang.String yAxis,
NumberColumn data)
chartTitle - title for the chartx - column for the x axisxAxis - title for x axisy - column for the xy axisyAxis - title for y axisdata - column for the bubblespublic static void show(double[] x,
double[] y,
double[] data)
x - values for the x axisy - values for the y axisdata - values for the bubblespublic static void show(java.lang.String chartTitle,
double[] x,
double[] y,
double[] data)
chartTitle - title for the chartx - values for the x axisy - values for the y axisdata - values for the bubblespublic static void show(java.lang.String chartTitle,
double[] x,
java.lang.String xAxis,
double[] y,
java.lang.String yAxis,
double[] data)
chartTitle - title for the chartx - values for the x axisxAxis - xAxis labely - values for the y axisyAxis - yAxis labeldata - values for the bubblesCopyright © 2018. All rights reserved.