import { IgrStraightNumericAxisBase, IIgrStraightNumericAxisBaseProps } from "./igr-straight-numeric-axis-base"; 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. * * ```ts * * * * * * * * * * ``` * * ```ts * this.series = new IgrColumnSeries({ name: "series1" }); * this.series.dataSource = this.data; * this.series.xAxis = this.categoryXAxis; * this.series.yAxis = this.numericYAxis; * this.series.xAxisName = "xAxis"; * this.series.yAxisName = "yAxis"; * ``` */ export declare class IgrNumericYAxis

extends IgrStraightNumericAxisBase

{ protected createImplementation(): NumericYAxis; /** * @hidden */ get i(): NumericYAxis; constructor(props: P); /** * Gets if the current axis is of vertical axis */ get isVertical(): boolean; scrollRangeIntoView(minimum: number, maximum: number): void; } export interface IIgrNumericYAxisProps extends IIgrStraightNumericAxisBaseProps { }