UNPKG

igniteui-webcomponents-charts

Version:

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

26 lines (25 loc) 1.09 kB
import { IgcContourValueResolverComponent } from "./igc-contour-value-resolver-component"; import { LinearContourValueResolver } from "./LinearContourValueResolver"; /** * ContourValueResolver class which resolves contour lines to be distributed at linear intervals from the data minimum to the data maximum. */ export declare class IgcLinearContourValueResolverComponent extends IgcContourValueResolverComponent { protected createImplementation(): LinearContourValueResolver; /** * @hidden */ get i(): LinearContourValueResolver; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcLinearContourValueResolverComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets how many contour values to return. */ get valueCount(): number; set valueCount(v: number); }