UNPKG

igniteui-webcomponents-charts

Version:

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

28 lines (27 loc) 1.25 kB
import { IgcStraightNumericAxisBaseComponent } from "./igc-straight-numeric-axis-base-component"; import { NumericYAxis } from "./NumericYAxis"; /** * Represents a IgxDataChartComponent numeric Y axis. * * The `NumericYAxis` treats the data as continuously varying numerical data items. Labels on this axis are placed along the Y-axis. Location of labels varies according to the value in a data column that is mapped using the `YMemberPath` property for Scatter Series or `ValueMemberPath` property for Category Series. */ export declare class IgcNumericYAxisComponent extends IgcStraightNumericAxisBaseComponent { protected createImplementation(): NumericYAxis; /** * @hidden */ get i(): NumericYAxis; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcNumericYAxisComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets if the current axis is of vertical axis */ get isVertical(): boolean; scrollRangeIntoView(minimum: number, maximum: number): void; }