UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

88 lines (83 loc) 2.55 kB
import { IgrVerticalStackedSeriesBase } from "./igr-vertical-stacked-series-base"; import { StackedBarSeries } from "./StackedBarSeries"; import { toPoint } from "igniteui-react-core"; /** * Represents a IgxDataChartComponent stacked bar series. */ export class IgrStackedBarSeries extends IgrVerticalStackedSeriesBase { createImplementation() { return new StackedBarSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } /** * Gets whether the current series shows a bar shape. */ get isBar() { return this.i.ez; } /** * Overridden by derived series classes to indicate when marker-less display is preferred or not. */ get isMarkerlessDisplayPreferred() { return this.i.fm; } /** * Gets or sets the x-radius of the ellipse that is used to round the corners of the bar. */ get radiusX() { return this.i.acg; } set radiusX(v) { this.i.acg = +v; } /** * Gets or sets the y-radius of the ellipse that is used to round the corners of the bar. */ get radiusY() { return this.i.ach; } set radiusY(v) { this.i.ach = +v; } /** * Scrolls the series to display the item for the specified data item. * The series is scrolled by the minimum amount required to place the specified data item within * the central 80% of the visible axis. * @param item * The data item (item) to scroll to. */ scrollIntoView(item) { let iv = this.i.ge(item); return (iv); } /** * Gets the index of the item that resides at the provided world coordinates. * @param world * The world coordinates of the requested item. */ getItemIndex(world) { let iv = this.i.j7(toPoint(world)); return (iv); } /** * Gets the item that is the best match for the specified world coordinates. * @param world * The world coordinates to use. */ getItem(world) { let iv = this.i.kr(toPoint(world)); return (iv); } /** * For a category plotted series, returns the current width of the items within the categories. This only returns a value if the items have some form of width (e.g. columns, bars, etc.) otherwise 0 is returned. */ getItemSpan() { let iv = this.i.iy(); return (iv); } }