reaviz
Version:
Data Visualization using React
13 lines (11 loc) • 334 B
TypeScript
import { ChartInternalDataTypes } from '../data';
/**
* Format a value based on type.
*/
export declare function formatValue(value: ChartInternalDataTypes): string;
/**
* Generate aria label text for the given data point(s)
* @param datapoint
* @returns Aria Label
*/
export declare function getAriaLabel(datapoint: any): any;