UNPKG

igniteui-webcomponents-charts

Version:

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

29 lines (28 loc) 985 B
import { IgcFragmentBaseComponent } from "./igc-fragment-base-component"; import { LineFragment } from "./LineFragment"; /** * Represents one part of a StackedLineSeries. */ export declare class IgcLineFragmentComponent extends IgcFragmentBaseComponent { protected createImplementation(): LineFragment; /** * @hidden */ get i(): LineFragment; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcLineFragmentComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets whether the current series shows only line shapes. */ get isLineOnly(): boolean; /** * Gets whether the current series shows an area or line shape. */ get isAreaOrLine(): boolean; }