igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
28 lines (27 loc) • 1.16 kB
TypeScript
import { ScalerParams as ScalerParams_internal } from "./ScalerParams";
import { ContentChildrenManager } from "igniteui-react-core";
/**
* 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 IgrScalerParams {
protected _implementation: any;
protected mounted: boolean;
get nativeElement(): HTMLElement;
/**
* @hidden
*/
get i(): ScalerParams_internal;
protected onImplementationCreated(): void;
protected _contentChildrenManager: ContentChildrenManager;
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);
findByName(name: string): any;
}