UNPKG

igniteui-webcomponents-charts

Version:

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

30 lines (29 loc) 1.17 kB
import { IgcHorizontalStackedSeriesBaseComponent } from "./igc-horizontal-stacked-series-base-component"; import { StackedSplineSeries } from "./StackedSplineSeries"; /** * Represents a IgxDataChartComponent stacked spline series. */ export declare class IgcStackedSplineSeriesComponent extends IgcHorizontalStackedSeriesBaseComponent { protected createImplementation(): StackedSplineSeries; /** * @hidden */ get i(): StackedSplineSeries; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcStackedSplineSeriesComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets whether to include the spline shape in the axis range requested of the axis. */ get isSplineShapePartOfRange(): boolean; set isSplineShapePartOfRange(v: boolean); /** * Gets whether the current series shows a spline shape. */ get isSpline(): boolean; }