UNPKG

igniteui-webcomponents-charts

Version:

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

24 lines (23 loc) 1.15 kB
import { IgcStraightNumericAxisBaseComponent } from "./igc-straight-numeric-axis-base-component"; import { NumericXAxis } from "./NumericXAxis"; /** * Represents a IgxDataChartComponent numeric X axis. * * The `NumericXAxis` treats the data as continuously varying numerical data items. Labels on this axis are placed along the X-axis. The location of labels varies according to the value in a data column that is mapped using the `XMemberPath` property of Scatter Series or `ValueMemberPath` property of Bar Series. */ export declare class IgcNumericXAxisComponent extends IgcStraightNumericAxisBaseComponent { protected createImplementation(): NumericXAxis; /** * @hidden */ get i(): NumericXAxis; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcNumericXAxisComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; scrollRangeIntoView(minimum: number, maximum: number): void; }