igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
64 lines (61 loc) • 2.54 kB
TypeScript
import { IgcCategorySeriesComponent } from "./igc-category-series-component";
import { RangeCategorySeries } from "./RangeCategorySeries";
/**
* Represents the base class for all IgxDataChartComponent ranged category/value series.
*
* The `RangeCategorySeries` represents the base class for all IgxDataChartComponent ranged category/value series.
*/
export declare abstract class IgcRangeCategorySeriesComponent extends IgcCategorySeriesComponent {
/**
* @hidden
*/
get i(): RangeCategorySeries;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcRangeCategorySeriesComponent;
static get observedAttributes(): string[];
/**
* Gets or sets the value mapping property for the current series object.
*
* The `LowMemberPath` is used for low mapping property of the current series object.
*/
get lowMemberPath(): string;
set lowMemberPath(v: string);
/**
* Gets or sets the value mapping property for the current series object.
*
* Use `HighMemberPath` propert for high mapping of the current series object.
*
* ```ts
* series.highMemberPath = "high";
* ```
*/
get highMemberPath(): string;
set highMemberPath(v: string);
/**
* Gets or sets the highlighted low value mapping property for the current series object.
*/
get highlightedLowMemberPath(): string;
set highlightedLowMemberPath(v: string);
/**
* Gets or sets the highlighted High value mapping property for the current series object.
*/
get highlightedHighMemberPath(): string;
set highlightedHighMemberPath(v: string);
getItemValue(item: any, memberPathName: string): any;
/**
* Gets the value of a requested member path from the series.
* @param memberPathName * The property name of a valid member path for the series
*/
getMemberPathValue(memberPathName: string): string;
/**
* Scrolls the series to display the item for the specified data item.
* The series is scrolled by the minimum amount required to place the specified data item within
* the central 80% of the visible axis.
* @param item * The data item (item) to scroll to.
*
* `ScrollIntoView` method Scrolls the series to display the item for the specified data item.
*/
scrollIntoView(item: any): boolean;
}