UNPKG

igniteui-webcomponents-charts

Version:

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

69 lines (64 loc) 2.34 kB
import { IgcCategoryAxisBaseComponent } from "./igc-category-axis-base-component"; import { IgcNumericYAxisComponent } from "./igc-numeric-y-axis-component"; import { IgcStackedSeriesBaseComponent } from "./igc-stacked-series-base-component"; import { HorizontalStackedSeriesBase } from "./HorizontalStackedSeriesBase"; import { IgcAxisComponent } from "./igc-axis-component"; /** * Base class for stacked series with a category x-axis and a numeric y-axis. */ export declare abstract class IgcHorizontalStackedSeriesBaseComponent extends IgcStackedSeriesBaseComponent { /** * @hidden */ get i(): HorizontalStackedSeriesBase; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcHorizontalStackedSeriesBaseComponent; static get observedAttributes(): string[]; /** * Gets or sets the effective x-axis for this series. */ get xAxis(): IgcCategoryAxisBaseComponent; set xAxis(v: IgcCategoryAxisBaseComponent); private _xAxisName; /** * Gets or sets the name to use to resolve xAxis from markup. */ get xAxisName(): string; set xAxisName(v: string); get hasValueAxis(): boolean; get isValueAxisInverted(): boolean; /** * Gets or sets the effective y-axis for this series. */ get yAxis(): IgcNumericYAxisComponent; set yAxis(v: IgcNumericYAxisComponent); private _yAxisName; /** * Gets or sets the name to use to resolve yAxis from markup. */ get yAxisName(): string; set yAxisName(v: string); bindAxes(axes: IgcAxisComponent[]): void; findByName(name: string): any; protected _styling(container: any, component: any, parent?: any): void; /** * Returns the offset value for this series if grouped on a category axis. */ getOffsetValue(): number; /** * Returns the width of the category grouping this series is in. */ getCategoryWidth(): number; /** * Determine if object can be used as YAxis * @param axis * The object to check */ canUseAsYAxis(axis: any): boolean; /** * Determine if object can be used as XAxis * @param axis * The object to check */ canUseAsXAxis(axis: any): boolean; }