igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
33 lines (32 loc) • 1.52 kB
TypeScript
import { IgxHorizontalStackedSeriesBaseComponent } from "./igx-horizontal-stacked-series-base-component";
import { StackedSplineAreaSeries } from "./StackedSplineAreaSeries";
import * as i0 from "@angular/core";
/**
* Represents a IgxDataChartComponent stacked spline area series.
*/
export declare class IgxStackedSplineAreaSeriesComponent extends IgxHorizontalStackedSeriesBaseComponent {
protected createImplementation(): StackedSplineAreaSeries;
/**
* @hidden
*/
get i(): StackedSplineAreaSeries;
constructor();
/**
* Gets or sets whether to include the spline shape in the axis range requested of the axis.
*/
get isSplineShapePartOfRange(): boolean;
set isSplineShapePartOfRange(v: boolean);
static ngAcceptInputType_isSplineShapePartOfRange: boolean | string;
/**
* Gets whether the current series shows an area shape.
*/
get isArea(): boolean;
static ngAcceptInputType_isArea: boolean | string;
/**
* Gets whether the current series shows a spline shape.
*/
get isSpline(): boolean;
static ngAcceptInputType_isSpline: boolean | string;
static ɵfac: i0.ɵɵFactoryDeclaration<IgxStackedSplineAreaSeriesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IgxStackedSplineAreaSeriesComponent, "igx-stacked-spline-area-series", never, { "isSplineShapePartOfRange": "isSplineShapePartOfRange"; }, {}, never, never>;
}