0.2.0 • Published 8 months ago

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

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

@logo-rn/logo-scatter-chart

is a chart that shows the relationship between two variables.

npm version

Installation

Install the component:

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

Usage

Once installed, import the component in your application:

import {LogoScatterChart} from '@logo-rn/logo-scatter-chart';
   const dataAccess: BubbleDataAccessProps = {
       source: "a",
       dataSet: [
         {
           fieldX: 1,
           fieldY: 2,
           fieldR: 13,
         },
         {
           fieldX: 2,
           fieldY: 3,
           fieldR: 23
           
         }
       ],
    };
      <LogoScatterChart
       dataAccess={dataAccess}
    />

For more detailed information, please visit:

Logo Elements Documentation ↗