1.3.0 ā€¢ Published 2 months ago

color-legend-element v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Color Legend Element

Screenshot of color-legend-element

<color-legend
  titletext="Snowfall (cm)"
  scaletype="continuous"
  tickformat=".0f"
  domain="[0, 100]"
  range='["#eff3ff", "#bdd7e7", "#6baed6", "#3182bd", "#08519c"]'
>
</color-legend>

A Custom Element suitable for use as a legend in data visualizations. Built with Lit and D3JS.

Features

  • Render legends for continuous, discrete, threshold, and categorical scales.
  • Uses d3-scale's concept of a domain and a range for mapping values to visual marks.
  • Compatible with color interpolators from d3-scale-chromatic
  • Customizable via its properties / attributes and CSS variables.
  • Framework and bundler not required, just add a <script> tag and use it!
  • Small bundle size: 27kb minified and 9kb gzipped.

Installation

NOTE: the <color-legend> assumes D3JS is available as a peer dependency. At the very least this should include the following modules from the D3JS library: d3-scale, d3-array, d3-format, d3-interpolate, and possibly d3-scale-chromatic if using one of d3's color schemes.

Install via npm:

npm install color-legend-element

Or via Yarn:

yarn add color-legend-element

You may then import the <color-legend> in the desired ES Module:

import "color-legend-element";

To use without a frontend build tool, add the <color-legend> via a <script> tag in your HTML document.

<script
  type="module"
  src="color-legend-element/build/color-legend-element.js"
></script>

If you prefer to not use the ESM build, you may instead use the UMD build:

<script src="color-legend-element/build/color-legend-element.umd.js"></script>

Windows OS Install

Note that Windows OS users may experience a problem with module bundlers where the D3JS dependencies are not found by the CLE. To work around this, it is recommended to be sure to use the ESM build:

import "color-legend-element/build/color-legend-element.js";

Example Usage

The <color-legend> will render using its default settings as follows:

<color-legend></color-legend>

It may be customized by settings its properties and CSS variables (full list below).

See the color-legend website for more examples of how to use the Color Legend Element.

Properties

The following table lists the Color Legend Element's properties, most of which have a corresponding HTML attribute. All attributes use a lowercase naming convention, so for example the property scaleType corresponds to the attribute scaletype. See the color-legend website for examples of how these properties and attributes may be configured to customize the <color-legend>.

PropertyTypeDefault ValueDescriptionHas Attribute
titleTextstring"Color Legend Element"The title text that displays at the top of the legend.Yes
widthnumber325The width of the SVG or categorical legend div element.Yes
heightnumber32The height of the SVG element.Yes
marginTopnumber6The spacing between the legend bar and top most extent of the SVG.Yes
marginRightnumber12The spacing between the legend bar and right most extent of the SVG.Yes
marginBottomnumber16The spacing between the legend bar and bottom most extent of the SVG.Yes
marginLeftnumber12The spacing between the legend bar and left most extent of the SVG.Yes
scaleTypeScaleType"continuous"The type of legend to render (e.g. data classification scheme the legend represents).Yes
domain(number | string)[][0, 1]The color scale's domain values.Yes
rangestring[]d3.schemeYlGnBu[5]The color scale's range values.Yes
markTypeMarkType"circle"The symbology used for categorical legends.Yes
ticksnumber5The desired number of axis ticks.Yes
tickFormatstring".1f"The d3-format specifier to format axis tick values.Yes
tickFormatter(value: number) => stringd3.format(".1f")A function that handles formatting the tick values.No
tickSizenumber6The size or length of the axis ticks.Yes
tickValuesnumber[]undefinedThe explicit values to be used for axis ticks.Yes
interpolatorInterpolatord3.interpolateHclThe color interpolator function to use from d3-interpolate.No

Notes on the above properties:

  • See src/types.ts for type definitions of ScaleType, MarkType, and Interpolator.

  • If the tickFormatter property is not explicitly set, it will be set internally using the value of tickFormat by passing the tickFormat string to d3.format.

  • The properties tickFormat and tickFormatter cannot be used simultaneously, they are both mechanisms for formatting the axis tick text. Setting the tickFormatter property explicitly will override the value of tickFormat, if it was previously set.

CSS Variables

The internal styling (CSS) of the Color Legend Element may be altered via the following CSS variables / custom properties:

Custom PropertyDefault ValueDescription
--cle-font-familysans-serifFont used for tick and legend item text
--cle-font-family-titlevar(--cle-font-family)Font used for the legend's title text
--cle-font-size0.75remFont size for the tick and legend item text
--cle-font-size-title0.875remFont size for the legend title text
--cle-letter-spacing0.3pxLetter spacing for tick and legend item text
--cle-letter-spacing-title0.25pxLetter spacing for the legend title text
--cle-font-weight400Font weight for the tick and legend item text
--cle-font-weight-title500Font weight for the title text
--cle-colorcurrentColorFont color for all text and tick lines
--cle-background#fffBackground color for the legend
--cle-padding0.375remPadding in the legend's container div
--cle-bordernoneBorder style of the legend's container div
--cle-border-radius0Border radius of the legend's container div
--cle-box-sizingcontent-boxBox-sizing property of the legend's container div
--cle-columns2Number of columns for categorical legends
--cle-column-widthautoColumn width for categorical legends
--cle-item-margin0.375rem 0.75rem 0 0Margin property for categorical legend items
--cle-line-width24pxWidth of the "line" markType for categorical legends
--cle-line-height2pxHeight of the "line" markType for categorical legends
--cle-swatch-size10pxHeight & Width of "rect" and "circle" markTypes for categorical legends
--cle-swatch-widthvar(--cle-swatch-size)Width of the "rect" and "circle" markTypes for categorical legends
--cle-swatch-heightvar(--cle-swatch-size)Height of the "rect" and "circle" markTypes for categorical legends
--cle-swatch-margin0 0.5rem 0 0Margin of the mark (line, square, circle) for categorical legends

The following example demonstrates how to override the default values of the <color-legend>'s CSS variables:

color-legend {
  --cle-font-family: serif;
  --cle-font-family-title: Impact;
  --cle-letter-spacing-title: 0.5px;
  --cle-color: white;
  --cle-background: #222;
  --cle-border-radius: 6px;
  --cle-padding: 0.25rem 0.25rem 0.75rem;
}

Local Development

Requires Node.js v16.13.0 and NPM >=8.

In the root of this repository first install dependencies:

npm install

Building from src

All compiled files will be outputted in the build/ directory.

To create the ESM build:

npm run build

or to watch for changes:

npm run build:watch

To create both the ESM & UMD bundles:

npm run bundle

Develop

To view the <color-legend> without bundling it:

npm run serve

or

npm run serve:prod

This will start up a local web server for dev/index.html. You may then modify the contents of src/ and/or dev/index.html and inspect the changes in your browser.

Running tests

Tests are located in src/test and may be run in either a development or production environment via:

npm run test:dev

or:

npm run test:prod

To run tests in both a development and a production environment do:

npm run test

To have the tests run when making changes to src/:

npm run test:watch

or

npm run test:prod:watch

Building the docs

To generate the docs directory:

npm run docs

This will first remove the docs/ directory, build files from the src/, and build files from the docs-src/ directory into the docs/ directory. All necessary files will be copied into docs/ directory (e.g. from build/ and node_modules/) in order for the <color-legend> render as it would in a production environment.

To serve the docs directory and watch for changes:

npm run docs:serve

Then open your browser to localhost:8080 to view the site.

Updating the custom-elements.json

According to Open Web Components:

Custom Elements Manifest is a file format that describes custom elements. This format will allow tooling and IDEs to give rich information about the custom elements in a given project.

To update the custom-elements.json manifest:

npm run analyze

License

Licensed under the MIT License, Copyright 2021 Chris L Henrick.

Credits

šŸ™ Some project boilerplate has been borrowed from the Lit Element TypeScript Starter Kit under the BSD-3-Clause License, Copyright 2017 Google LLC.

šŸ™ Inspired by the Color Legend on Observable by Mike Bostock under the ISC License, Copyright 2019ā€“2020 Observable, Inc.

1.3.0

2 months ago

1.2.0

2 months ago

1.1.0

2 months ago

1.0.6

3 months ago

1.0.5

3 months ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago