New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-line-graph

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-line-graph

A simple and lightweight line graph

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-80.77%
Maintainers
1
Weekly downloads
 
Created
Source

React Line Graph

A lightweight and simple line graph component.

NPM Version Build Status Downloads Stats

Supports Bezier smoothing, easy customization, and hover interactivity.

Example demo

Table of Contents

  1. Requirements
  2. Installation
  3. Usage
  4. Development Setup
  5. Testing
  6. Release History
  7. Meta
  8. Contributing
  9. To-do
  10. Challenges

Requirements

An nvmrc file is included if using nvm.

  • Node 8.10.0

Installation

OS X & Linux:

npm install react-line-graph

Usage

Usage is quite simple. First, import the component (React 16.8.0 or higher is required as an installed dependency or CDN):

import LineGraph from 'react-line-graph'

Render the line:

const data = [10,0,-2.5,540]; // LineGraph reads these as y-values, automatically spaces them out evenly
<LineGraph data={data}/>

or

const data = [[0,20], [-30,40], [-88.9, 9]]; // LineGraph reads these as x,y pairs
<LineGraph data={data}/>

or

const data = [ { x: 10, y: 2 }, {...}];
<LineGraph data={data}/>

Customizing your graph is easy:

const data = [10,0,-2.5,540];
const props = {
  data,
  smoothing: 0.3,
  accent: 'palevioletred'
  fillBelow: 'rgba(200,67,23,0.1)',
  hover: true,
};

<LineGraph {...props}/>

This renders a smooth graph with hovering enabled. The y-value is passed down to child components upon hover by default, but this can be changed.

Props

KeyTypeDefaultDescription
dataArray (required)[]The data points to render. May be of form [a,...,b], [[a,b],...,[c,d]], or [{x: a, y: b},...,{...}] where a,b,c,d are some numbers
smoothNumber (0 to 1)0The Bezier smoothing ratio to apply.
accentString'black'The color of the line accents
fillBelowString'none'The color of the fill below the line.
fillAboveString'none'The color of the fill above the line.
hoverBooleanfalseEnables hovering. Hovering will render a line and will pass on the hovered value to children (this component is child-aware).
gridXBooleanfalseShows the grid-lines along the x-axis (vertical lines).
gridYBooleanfalseShows the grid-lines along the y-axis (horizontal lines).
debugBooleanfalseDisplays debug information on graph, including anchor and control points.
widthString'100%'The width of the component within a container element.
heightString'100%'The height of the component within a container element.
compressionNumber0.1The compression factor of the data-set from 0 to 1. Compresses data linearly from top and bottom along the Y-axis.
onHoverFunction() => {}The callback function to which an array containing currently hovered point ([x, y]) is passed when the user hovers. Useful for displaying the hovered value in the parent component (the one you write). Only active when 'hover' is set to true.

For more examples and usage, please refer to the Wiki (under development).

Development setup

For developers (OS X / Linux):

From within the root directory:

npm install
npm start

Testing

From within the root directory:

npm test

Release History

  • 1.0.3
    • First patched release
    • CHANGE: bug-fixes, new features. See release for details.
  • 1.0.0
    • The first proper release
    • CHANGE: Add Bezier smoothing transformation function
  • 0.1.0
    • Work in progress

Meta

Umair Nadeem – @UmairNadeemumair@umairnadeem.com

Distributed under the MIT license. See LICENSE for more information.

https://github.com/umairnadeem/react-line-graph

Contributing

  1. Fork it (https://github.com/umairnadeem/react-line-graph/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Feature Requests

  • Put all helper methods in a class
  • Fix smoothing algorithm to be more precise using cubic Beziers
  • Clean up prop passing in InteractionLayer*
  • Refactor hover to not use setState (better performance)
  • Update compression algorithm to be two-way (compress highs and lows)*
  • Allow 3 different data input types (create helper function 'parse')
  • Remove unnecessary re-render of graph upon setState in parent component
  • Refactor LineGraph's index.jsx with React Hooks*
  • Publish on NPM, update README tags*
  • Allow multiple transformation functions in drawPath function, using piping
  • Prevent re-run of findCtrlPoint function upon hover
  • Allow exponential smoothing for large data-sets

Challenges

  • Make hovering compatible with responsive height/width: need 3 data points per axis (viewBox dimension, cursor position, current dimension)
  • Pass up hovered point information into parent
  • Allow parent to setState with point information without triggering unecessary re-render
  • Writing a smoothing algorithm using cubic Bezier without artifacts
  • Modular transformation callback in drawPath helper

Keywords

FAQs

Package last updated on 02 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc