/** * Base class for all charts, contains the margins, the background and the title. * @constructor * @extends {anychart.core.Chart} */ anychart.core.SeparateChart;
/** * Getter for the chart legend. * @shortDescription Legend settings. * @category Chart Controls * @example anychart.core.SeparateChart.legend_get * @return {anychart.core.ui.Legend} Legend instance. */ anychart.core.SeparateChart.prototype.legend;
/** * Setter for chart legend settings. * @detailed Sets chart legend settings depending on parameter type: * <ul> * <li><b>null/boolean</b> - disable or enable chart legend.</li> * <li><b>object</b> - sets chart legend settings.</li> * </ul> * @example anychart.core.SeparateChart.legend_set_asBool Disable/Enable legend * @example anychart.core.SeparateChart.legend_set_asObj Using object * @param {(Object|boolean|null)=} opt_settings [false] Legend settings. * @return {anychart.core.Chart} An instance of the class for method chaining. */ anychart.core.SeparateChart.prototype.legend;
/** * Getter for interactivity settings for the chart. * @shortDescription Interactivity settings. * @category Interactivity * @return {anychart.core.utils.Interactivity} Interactivity settings. * @since 7.7.0 */ anychart.core.SeparateChart.prototype.interactivity;
/** * Setter for interactivity settings for the chart. * @example anychart.core.SeparateChart.interactivity_set * @param {(Object|anychart.enums.HoverMode|string|boolean)=} opt_settings Settings object or boolean value like enabled state. * @return {anychart.core.SeparateChart} Self instance for method chaining. * @since 7.7.0 */ anychart.core.SeparateChart.prototype.interactivity;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.margin;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.padding;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.background;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.title;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.label;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.tooltip;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.animation;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.draw;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.toJson;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.toXml;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.bounds;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.left;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.right;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.top;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.bottom;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.width;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.height;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.minWidth;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.minHeight;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.maxWidth;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.maxHeight;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getPixelBounds;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.container;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.zIndex;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.enabled;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsPng;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsJpg;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsPdf;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsSvg;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.toSvg;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.credits;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.localToGlobal;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.globalToLocal;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.contextMenu;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getSelectedPoints;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.toCsv;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsXml;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsJson;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsCsv;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.saveAsXlsx;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getStat;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.exports;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.noData;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.autoRedraw;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.a11y;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.cancelMarquee;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getJpgBase64String;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getPdfBase64String;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getPngBase64String;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.getSvgBase64String;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.inMarquee;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.selectRectangleMarqueeFill;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.selectRectangleMarqueeStroke;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareAsJpg;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareAsPdf;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareAsPng;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareAsSvg;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareWithFacebook;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareWithLinkedIn;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareWithPinterest;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareWithPinterest;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.shareWithTwitter;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.toA11yTable;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.toHtmlTable;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.fullScreen;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.isFullScreenAvailable;
/** @inheritDoc */ anychart.core.SeparateChart.prototype.id;