Skip to content

Latest commit

 

History

History
103 lines (83 loc) · 3.02 KB

PiePoint.adoc

File metadata and controls

103 lines (83 loc) · 3.02 KB

/** * Point representing pie point. * @param {anychart.charts.Pie} chart Pie chart. * @param {number} index Point index in chart. * @constructor * @extends {anychart.core.Point} */ anychart.core.PiePoint;

/** * Gets start angle of the point. * <b>Note</b>: Works only after chart.draw() is called. * @category Size and Position * @example anychart.core.PiePoint.getStartAngle * @return {number} Start angle. * @since 7.8.0 */ anychart.core.PiePoint.prototype.getStartAngle;

/** * Gets end angle of the point. * <b>Note</b>: Works only after chart.draw() is called. * @category Size and Position * @example anychart.core.PiePoint.getEndAngle * @return {number} End angle. * @since 7.8.0 */ anychart.core.PiePoint.prototype.getEndAngle;

/** * Getter for the select point state. * @shortDescription Select point state. * @category Point Elements * @listing See listing * var point = chart.getPoint(1); * var selectState = point.selected(); * @return {boolean} Select point state. * @since 7.8.0 */ anychart.core.PiePoint.prototype.selected;

/** * Setter for the select point state. * @example anychart.core.PiePoint.selected_set * @param {boolean=} opt_enabled [false] Select state to set. * @return {anychart.core.PiePoint} Self instance for method chaining. * @since 7.8.0 */ anychart.core.PiePoint.prototype.selected;

/** * Alias-method. See at {@link anychart.core.PiePoint#selected} */ anychart.core.PiePoint.prototype.exploded;

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

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

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

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

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

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

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