0.2.0 • Published 8 months ago

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

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

@logo-rn/logo-line-chart

is a chart uses points connected by line segments from left to right to demonstrate changes in value.

npm version

Installation

Install the component:

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

Usage

Once installed, import the component in your application:

import {LogoLineChart} from '@logo-rn/logo-line-chart';
  const dataAccess: LineDataAccessProps = {
      source: "a",
      dataSet: [
        {
          x: 1,
          y: 2,
        },
        {
          x: 2,
          y: 3,
        }
      ],
    };
    //...
     <LogoLineChart
       dataAccess={dataAccess}
    />

For more detailed information, please visit:

Logo Elements Documentation ↗