@logo-rn/logo-radar-chart
a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point.
Installation
Install the component:
npm i @logo-rn/logo-radar-chart -s
Usage
Once installed, import the component in your application:
import {LogoRadarChart} from '@logo-rn/logo-radar-chart';
const dataAccess: RadarDataAccessProps = {
source: "a",
aggregation: "summation",
aggregationValue: 121,
dataSet: [
{
x: "Değer",
y: 33,
},
{
x: "Çeviklik",
y: 40,
}
],
};
//...
<LogoRadarChart
dataAccess={dataAccess}
/>