Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 1.5 KB

BubblePoint.adoc

File metadata and controls

57 lines (43 loc) · 1.5 KB

/** * Point representing bubble points that belongs to cartesian or scatter chart. * @param {anychart.core.SeriesBase} series Series. * @param {number} index Point index in series. * @constructor * @extends {anychart.core.SeriesPoint} */ anychart.core.BubblePoint;

/** * Getter for the bubble point radius. * @category Size and Position * @example anychart.core.BubblePoint.getPixelRadius * @return {number} Radius in pixels. * @since 7.8.0 */ anychart.core.BubblePoint.prototype.getPixelRadius;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.exists;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.getSeries;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.get;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.set;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.getStackValue;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.getStackZero;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.selected;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.hovered;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.getIndex;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.getChart;

/** @inheritDoc */ anychart.core.BubblePoint.prototype.getStat;