igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
37 lines (36 loc) • 1.29 kB
TypeScript
import { IgcHorizontalRangeCategorySeriesComponent } from "./igc-horizontal-range-category-series-component";
import { RangeAreaSeries } from "./RangeAreaSeries";
/**
* Represents a IgxDataChartComponent range area series.
*
* The `RangeAreaSeries` class represents the range area series of the IgxDataChartComponent.
*/
export declare class IgcRangeAreaSeriesComponent extends IgcHorizontalRangeCategorySeriesComponent {
protected createImplementation(): RangeAreaSeries;
/**
* @hidden
*/
get i(): RangeAreaSeries;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcRangeAreaSeriesComponent;
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.
*
* Use the `IsAreaOrLine` property to check if the current series shows an area or line shape.
*
* ```ts
* var x= series.isAreaOrLine;
* ```
*/
get isAreaOrLine(): boolean;
/**
* Gets whether the current series shows an area shape.
*/
get isArea(): boolean;
}