0.7.3 ā€¢ Published 5 years ago

react-colorscales v0.7.3

Weekly downloads
1,665
License
MIT
Repository
github
Last release
5 years ago

React colorscales šŸŒˆ

A React UI component for picking and modifying colorscales, based on Chroma-js.

Part of Plotly's React Component Suite for building data visualization Web apps and products.

Demo

šŸ‘‰ DEMO

šŸ‘‰ Demo source code

šŸ‘‰ Wrapper for Dash apps (Python)

Install

npm install react-colorscales

yarn add react-colorscales

šŸš— Quick Start

import {Colorscale} from 'react-colorscales';
import ColorscalePicker from 'react-colorscales';

const viridisColorscale = ['#fafa6e', '#9cdf7c', '#4abd8c', '#00968e', '#106e7c', '#2a4858'];

// Show a single colorscale

<Colorscale
    colorscale={viridisColorscale}
    onClick={() => {}}
    width={150}
/>

// Show the colorscale picker

<ColorscalePicker 
    onChange={this.onChange}
    colorscale={viridisColorscale}
/>

API

Colorscale component

<Colorscale /> generates a single color scale palette:

propDescription
onClickFunction to be called when colorscale is clicked.
colorscaleColorscale as an array of color strings (HEX or RGB). See Quick Start above.
widthOptional: Width of an individual color swatch. Defaults to 20px.
maxWidthOptional: Maximum width of colorscale palette. If set, maxWidth overrides swatch width.
labelOptional: Label positioned on the left side of color scale palette

ColorscalePicker component

<ColorscalePicker /> generates a UI panel for selecting a color scale palette:

propDescription
onChangePasses back a new color scale when a scale is chosen or modified.
colorscaleDefault colorscale as an array of color strings (HEX or RGB). See Quick Start above.
nSwatchesOptional: Number of discrete colors or "swatches" in the default color scale.
fixSwatchesOptional: If set to true, hides the swatches slider and fixes swatches to `nSwatches.
colorscaleTypeOptional: If set, sets ColorPicker Dropdown to specific colorscale, one of COLORSCALE_TYPES
widthOptional: Can set width of component
classNameOptional: Can add className to base level component
disableSwatchControlsOptional: Does not show swatch related controls in ColorPicker
scaleLengthOptional: Can specify the lengh of the Colorscales used in the ColorPicker

See the demo app source code for an example of importing and using these components.

Features

  • Preloaded with ColorBrewer, cmocean, and cube helix color scales
  • Log color scales
  • Set custom scale breakpoints
  • Set the number of discrete colors ("swatches") in a color scale

Screenshots

react-colorscales-screenshot

Credit

  • Cynthia Brewer's ColorBrewer colorscales
  • Kristen Thyng's cmocean color scales
  • Dave Green's cube helix color scales
  • Gregor Aisch's chroma-js for easy access to the aforementioned color scales in JavaScript.
0.7.3

5 years ago

0.7.2

6 years ago

0.7.1

6 years ago

0.7.0

6 years ago

0.6.1

6 years ago

0.6.0

6 years ago

0.5.9

6 years ago

0.5.8

6 years ago

0.5.7

6 years ago

0.5.6

6 years ago

0.5.5

6 years ago

0.5.4

6 years ago

0.5.3

6 years ago

0.5.2

6 years ago

0.5.1

6 years ago

0.5.0

6 years ago

0.4.3

6 years ago

0.4.2

6 years ago

0.4.1

6 years ago

0.4.0

6 years ago

0.3.9

6 years ago

0.3.8

6 years ago

0.3.7

6 years ago

0.3.6

6 years ago

0.3.5

6 years ago

0.3.3

6 years ago

0.3.2

6 years ago

0.2.2

6 years ago

0.2.0

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago