import { NumericScaleMode } from "./NumericScaleMode"; import { IgrNumericAxisBase, IIgrNumericAxisBaseProps } from "./igr-numeric-axis-base"; import { StraightNumericAxisBase } from "./StraightNumericAxisBase"; /** * Defines a set of basic methods and properties used to create a StraightNumeric axis. */ export declare abstract class IgrStraightNumericAxisBase

extends IgrNumericAxisBase

{ /** * @hidden */ get i(): StraightNumericAxisBase; constructor(props: P); /** * Gets or sets the axis scale mode. * * `ScaleMode` can be used on numeric axes to allow scaling data values using built-in scalers. The available scalers are linear or logarithmic. * * ```ts * this.yAxis.scaleMode = NumericScaleMode.Logarithmic; * ``` * * ```ts * * * * * * * * ``` */ get scaleMode(): NumericScaleMode; set scaleMode(v: NumericScaleMode); } export interface IIgrStraightNumericAxisBaseProps extends IIgrNumericAxisBaseProps { /** * Gets or sets the axis scale mode. * * `ScaleMode` can be used on numeric axes to allow scaling data values using built-in scalers. The available scalers are linear or logarithmic. * * ```ts * this.yAxis.scaleMode = NumericScaleMode.Logarithmic; * ``` * * ```ts * * * * * * * * ``` */ scaleMode?: NumericScaleMode | string; }