igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
29 lines (28 loc) • 978 B
TypeScript
import { IgcFragmentBaseComponent } from "./igc-fragment-base-component";
import { AreaFragment } from "./AreaFragment";
/**
* Represents one part of a StackedAreaSeries.
*/
export declare class IgcAreaFragmentComponent extends IgcFragmentBaseComponent {
protected createImplementation(): AreaFragment;
/**
* @hidden
*/
get i(): AreaFragment;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcAreaFragmentComponent;
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;
}