Uses of Class
org.knowm.xchart.BubbleSeries
-
Packages that use BubbleSeries Package Description org.knowm.xchart -
-
Uses of BubbleSeries in org.knowm.xchart
Methods in org.knowm.xchart that return BubbleSeries Modifier and Type Method Description BubbleSeries
BubbleChart. addSeries(String seriesName, double[] xData, double[] yData, double[] bubbleData)
Add a series for a Bubble type chart using using ListsBubbleSeries
BubbleChart. addSeries(String seriesName, List<? extends Number> xData, List<? extends Number> yData, List<? extends Number> bubbleData)
Add a series for a Bubble type chart using using double arraysBubbleSeries
BubbleChart. updateBubbleSeries(String seriesName, double[] newXData, double[] newYData, double[] newBubbleData)
Update a series by updating the X-Axis, Y-Axis and bubble dataBubbleSeries
BubbleChart. updateBubbleSeries(String seriesName, List<?> newXData, List<? extends Number> newYData, List<? extends Number> newBubbleData)
Update a series by updating the X-Axis, Y-Axis and bubble data
-