0.2.1 • Published 9 months ago

@logo-rn/logo-bubble-chart v0.2.1

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

@logo-rn/logo-bubble-chart

is used to represent data and compare the contribution of each value to the whole.

npm version

Installation

Install the component:

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

Usage

Once installed, import the component in your application:

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

For more detailed information, please visit:

Logo Elements Documentation ↗