@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.
18 lines (16 loc) • 548 B
TypeScript
import { Highlight } from '../highlight/Highlight';
import { ChartData } from './ChartData';
import { RadarDataSet } from './RadarDataSet';
import { RadarEntry } from './RadarEntry';
/**
* Data container for the RadarChart.
*
*/
export declare class RadarData extends ChartData<RadarEntry, RadarDataSet> {
/**
* Sets the labels that should be drawn around the RadarChart at the end of each web line.
*/
labels: string[];
constructor(dataSets: RadarDataSet[]);
getEntryForHighlight(highlight: Highlight): RadarEntry;
}