@logo-rn/logo-scatter-chart
v0.2.0
Published
<LogoScatterChart/> is a chart that shows the relationship between two variables.
Downloads
5
Readme
@logo-rn/logo-scatter-chart
is a chart that shows the relationship between two variables.
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}
/>