/** * Class that wraps point of series or chart. * @extends {anychart.core.Point} * @constructor * @since 7.10.0 */ anychart.core.TreeChartPoint;
/** * Getter for the point linear index. * @category Specific settings * @example anychart.core.TreeChartPoint.getIndex * @return {number} Index of point. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.getIndex;
/** * Getter for the chart point belongs to. * @category Charts * @example anychart.core.TreeChartPoint.getChart * @return {anychart.core.SeparateChart} The chart. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.getChart;
/** * Returns a node. * @category Data * @example anychart.core.TreeChartPoint.getNode * @return {anychart.data.Tree.DataItem|anychart.data.TreeView.DataItem} Data item. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.getNode;
/* * Getter for the value from data by path specified. * @category Data * @example anychart.core.TreeChartPoint.get * @param {string} field Field in data row. * @return {} Return the field value. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.get;
/* * Setter for the value to the data by path. * @category Data * @example anychart.core.TreeChartPoint.set * @param {string} field Field. * @param {} value Value to set. * @return {anychart.core.TreeChartPoint} Self instance for method chaining. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.set;
/** * Getter for the hover point state. * @shortDescription Hover point state. * @category Point Elements * @example anychart.core.TreeChartPoint.hovered_get * @return {boolean} Hover state. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.hovered;
/** * Setter for the hover point state. * @example anychart.core.TreeChartPoint.hovered_set * @param {boolean=} opt_enabled Hover state to set. * @return {anychart.core.TreeChartPoint} Self instance for method chaining. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.hovered;
/** * Getter for the select point state. * @shortDescription Select point state. * @category Point Elements * @listing See listing * var selectState = point.selected(); * @return {boolean} Select state. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.selected;
/** * Setter for the select point state. * @param {boolean=} opt_value Select state to set. * @listing See listing * point.selected(true); * @return {anychart.core.TreeChartPoint} Self instance for method chaining. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.selected;
/** * Checks if the point exists. * @category Data * @example anychart.core.TreeChartPoint.exists * @return {boolean} Whether point exists in data set or not. * @since 7.10.0 */ anychart.core.TreeChartPoint.prototype.exists;
/** @inheritDoc */ anychart.core.TreeChartPoint.prototype.getStat;