UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

25 lines (24 loc) 1.01 kB
import { ScalerParams as ScalerParams_internal } from "./ScalerParams"; /** * Class containing several properties which are used as parameters passed to scaling operations in a SeriesViewer. * * Class containing several properties which are used as parameters passed to scaling operations in a `SeriesViewer`. */ export declare class IgxScalerParams { protected _implementation: any; /** * @hidden */ get i(): ScalerParams_internal; private onImplementationCreated; constructor(); protected _provideImplementation(i: any): void; /** * The series reference value. * Typically, the reference value is the initial value of the series. The reference value is used by the PercentChangeYAxis, where all values in the series are scaled relative to the initial value. */ get referenceValue(): number; set referenceValue(v: number); static ngAcceptInputType_referenceValue: number | string; findByName(name: string): any; }