-
public class BubblePoint extends SeriesPoint
Point representing bubble points that belongs to cartesian or scatter chart.
-
-
Constructor Summary
Constructors Constructor Description BubblePoint(String jsChart)
-
Method Summary
Modifier and Type Method Description static BubblePointinstantiate()StringgetJsBase()voidexists()Checks if the point with the given index exists in a dataset. voidget(String field)Fetches a field value from point data row by its name. SeparateChartgetChart()Getter for the chart which current point belongs to. voidgetIndex()Getter for the point index in chart or series. voidgetPixelRadius()Getter for the bubble point radius. SeriesBasegetSeries()Getter for series which current point belongs to. voidgetStackValue()Returns stack value of the point. voidgetStackZero()Returns stack zero of the point. voidgetStat(Statistics key)Getter for the statistics value by key. voidgetStat(String key)Getter for the statistics value by key. voidhovered()Getter for the hover point state. BubblePointhovered(Boolean enabled)Setter for the hover point state. voidselected()Getter for the select series point state. BubblePointselected(Boolean enabled)Setter for the select series point state. BubblePointset(String field, String value)Sets the field of the point data row to the specified value. -
Methods inherited from class com.anychart.core.SeriesPoint
hovered, instantiate, selected, set -
Methods inherited from class com.anychart.core.Point
hovered, instantiate, selected, set -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
BubblePoint
BubblePoint(String jsChart)
-
-
Method Detail
-
instantiate
static BubblePoint instantiate()
-
exists
void exists()
Checks if the point with the given index exists in a dataset.
-
getChart
SeparateChart getChart()
Getter for the chart which current point belongs to.
-
getIndex
void getIndex()
Getter for the point index in chart or series.
-
getPixelRadius
void getPixelRadius()
Getter for the bubble point radius.
-
getSeries
SeriesBase getSeries()
Getter for series which current point belongs to.
-
getStackValue
void getStackValue()
Returns stack value of the point. Note: Works only after chart.draw() is called.
-
getStackZero
void getStackZero()
Returns stack zero of the point. Note: Works only after chart.draw() is called.
-
getStat
void getStat(Statistics key)
Getter for the statistics value by key.
-
hovered
void hovered()
Getter for the hover point state.
-
hovered
BubblePoint hovered(Boolean enabled)
Setter for the hover point state.
-
selected
void selected()
Getter for the select series point state.
-
selected
BubblePoint selected(Boolean enabled)
Setter for the select series point state.
-
set
BubblePoint set(String field, String value)
Sets the field of the point data row to the specified value.
-
-
-
-