Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-vertical-bar-chart

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-vertical-bar-chart

Vertical scrolling bar chart for React

  • 1.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react-vertical-bar-chart

by the Growth Lab at Harvard's Center for International Development

Vertical scrolling bar chart for React.

This package is part of Harvard Growth Lab’s portfolio of software packages, digital products and interactive data visualizations. To browse our entire portfolio, please visit growthlab.app. To learn more about our research, please visit Harvard Growth Lab’s home page.

NPM JavaScript Style Guide

View live example ↗

Install

npm install --save react-vertical-bar-chart

Usage

import React from 'react'
import VerticalBarChart from 'react-vertical-bar-chart';

const App = () => {

  ...

  return (
    <VerticalBarChart
      data={data}
    />
  )
}

export default App

Props

The VerticalBarChart component takes the following props:

  • data: BarDatum[]
  • formatValue (optional): (value: number) => string | number | React.ReactElement
  • axisLabel (optional): React.ReactElement<any> | string | undefined | null
  • onRowHover (optional): (event: RowHoverEvent) => void
  • highlighted (optional): string
  • onHighlightError (optional): (value: string) => void
  • numberOfXAxisTicks (optional): number
  • centerLineValue: number
  • centerLineLabel: string | number | React.ReactElement
  • overMideLineLabel: string
  • underMideLineLabel: string
  • scrollDownText: string
BarDatum

The BarDatum type is an interface of the following values:

  • id: string
  • title: string
  • value: number
  • color: string
RowHoverEvent

The RowHoverEvent type is an interface of the following values:

License

MIT © The President and Fellows of Harvard College

FAQs

Package last updated on 18 May 2021

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