@nativescript-community/ui-chart
Version:
A powerful chart / graph plugin, supporting line, bar, pie, radar, bubble, and candlestick charts as well as scaling, panning and animations.
24 lines (23 loc) • 585 B
TypeScript
import { ValueFormatter } from './ValueFormatter';
/**
* Created by philipp on 02/06/16.
*/
export declare class DefaultAxisValueFormatter extends ValueFormatter {
/**
* decimalformat for formatting
*/
protected mFormat: string;
/**
* the number of decimal digits this formatter uses
*/
decimalDigits: any;
/**
* Constructor that specifies to how many digits the value should be
* formatted.
*
* @param digits
*/
constructor(digits: any);
setup(digits: any): void;
getFormattedValue(value: any): string;
}