@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.
15 lines (14 loc) • 369 B
JavaScript
import { ChartData } from './ChartData';
/**
* Data container for the RadarChart.
*
*/
export class RadarData extends ChartData {
constructor(dataSets) {
super(dataSets);
}
getEntryForHighlight(highlight) {
return this.getDataSetByIndex(highlight.dataSetIndex).getEntryForIndex(highlight.x);
}
}
//# sourceMappingURL=RadarData.js.map