public class BubblePlotOptions extends PlotOptions<BubblePlotOptions>
BaseChart.setBubblePlotOptions(BubblePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method.
Note that these options are only needed if you want to specifically control the general options
for all bar type series in the entire chart. If you instead want to control the options for all
series in the chart (not just those of a bar type), then you can use the SeriesPlotOptions
class instead. Or, if you want to control the plot options for just one series (and not all bar type
series in the chart), use the Series.setPlotOptions(PlotOptions) method.PlotOptions.Cursor, PlotOptions.PointPlacement, PlotOptions.Stacking| Constructor and Description |
|---|
BubblePlotOptions() |
| Modifier and Type | Method and Description |
|---|---|
BubblePlotOptions |
setDisplayNegative(boolean displayNegative)
Convenience method for setting the "displayNegative" option for the bubble plot options.
|
BubblePlotOptions |
setZThreshold(Number zThreshold)
Convenience method for setting the "zThreshold" option for the bubble plot options.
|
getDataLabels, setAllowPointSelect, setAnimation, setAnimation, setBaseDataLabels, setColor, setColor, setCropThreshold, setCursor, setDashStyle, setDataGrouping, setDataLabels, setEnableMouseTracking, setHoverStateEnabled, setHoverStateLineWidth, setHoverStateMarker, setId, setLegendIndex, setLineWidth, setLinkedTo, setLinkedTo, setMarker, setNegativeColor, setNegativeColor, setPointInterval, setPointPlacement, setPointStart, setSelected, setShadow, setShowCheckbox, setShowInLegend, setStacking, setStickyTracking, setThreshold, setTurboThreshold, setVisible, setZIndex, setZoneAxis, setZonesgetOptions, setOptionpublic BubblePlotOptions setDisplayNegative(boolean displayNegative)
bubblePlotOptions.setOptions("displayNegative", true);
Whether to display negative sized bubbles. The threshold is given by the zThreshold option,
and negative bubbles can be visualized by setting negativeColor. Defaults to true.displayNegative - 'true' to display negative-sized bubblesBubblePlotOptions instance for convenient method chaining.public BubblePlotOptions setZThreshold(Number zThreshold)
bubblePlotOptions.setOptions("zThreshold", 0);
When displayNegative is false, bubbles with lower Z values are skipped.
When displayNegative is true and a negativeColor is given, points with lower Z is colored. Defaults to 0.zThreshold - The minimum z-value for a point to be shown in a bubble plotBubblePlotOptions instance for convenient method chaining.Copyright © 2015. All Rights Reserved.