igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
33 lines (32 loc) • 1.15 kB
TypeScript
import { IgcSplineFragmentBaseComponent } from "./igc-spline-fragment-base-component";
import { SplineAreaFragment } from "./SplineAreaFragment";
/**
* Represents one part of a StackedSplineAreaSeries.
*/
export declare class IgcSplineAreaFragmentComponent extends IgcSplineFragmentBaseComponent {
protected createImplementation(): SplineAreaFragment;
/**
* @hidden
*/
get i(): SplineAreaFragment;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcSplineAreaFragmentComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets whether the current series shows an area or line shape.
*/
get isAreaOrLine(): boolean;
/**
* Gets whether the current series shows an area shape.
*/
get isArea(): boolean;
/**
* Gets whether the current series shows a spline shape.
*/
get isSpline(): boolean;
}