0.2.0 • Published 8 months ago

@logo-rn/logo-polar-chart v0.2.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
8 months ago

@logo-rn/logo-polar-chart

is a chart that presents grouped data displays different data points on a radial axis.

npm version

Installation

Install the component:

npm i @logo-rn/logo-polar-chart -s

Usage

Once installed, import the component in your application:

import {LogoPolarChart} from '@logo-rn/logo-polar-chart';
  const dataAccess: PolarDataAccessProps = {
   source: "a",
   dataSet: [
     {
       x: 1,
       y: 33,
       
     },
     {
       x: 2,
       y: 40,
     }
   ],
 };
 //...
      <LogoPolarChart dataAccess={dataAccess} />

For more detailed information, please visit:

Logo Elements Documentation ↗