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

d3plus-legend

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

d3plus-legend

An easy to use javascript chart legend.

  • 0.6.10
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
621
decreased by-22.86%
Maintainers
1
Weekly downloads
 
Created
Source

d3plus-legend

NPM Release Build Status Dependency Status Slack

An easy to use javascript chart legend.

Installing

If you use NPM, npm install d3plus-legend. Otherwise, download the latest release. The released bundle supports AMD, CommonJS, and vanilla environments. Create a custom bundle using Rollup or your preferred bundler. You can also load directly from d3plus.org:

<script src="https://d3plus.org/js/d3plus-legend.v0.6.full.min.js"></script>

API Reference

Legend ⇐ BaseClass

Kind: global class
Extends: BaseClass

new Legend()

Creates an SVG scale based on an array of data. If data is specified, immediately draws based on the specified array and returns the current class instance. If data is not specified on instantiation, it can be passed/updated after instantiation using the data method.

Legend.render([callback])

Renders the current Legend to the page. If a callback is specified, it will be called once the legend is done drawing.

Kind: static method of Legend

ParamType
[callback]function

Legend.align([value])

If value is specified, sets the horizontal alignment to the specified value and returns the current class instance. If value is not specified, returns the current horizontal alignment.

Kind: static method of Legend

ParamTypeDefaultDescription
[value]String"center"Supports "left" and "center" and "right".

Legend.data([data])

If data is specified, sets the data array to the specified array and returns the current class instance. If data is not specified, returns the current data array. A shape key will be drawn for each object in the array.

Kind: static method of Legend

ParamTypeDefault
[data]Array[]

Legend.duration([value])

If value is specified, sets the transition duration of the legend and returns the current class instance. If value is not specified, returns the current duration.

Kind: static method of Legend

ParamTypeDefault
[value]Number600

Legend.height([value])

If value is specified, sets the overall height of the legend and returns the current class instance. If value is not specified, returns the current height value.

Kind: static method of Legend

ParamTypeDefault
[value]Number100

Legend.id([value])

If value is specified, sets the id accessor to the specified function and returns the current class instance. If value is not specified, returns the current id accessor.

Kind: static method of Legend

ParamType
[value]function

Example

function value(d) {
  return d.id;
}

Legend.label([value])

If value is specified, sets the label accessor to the specified function or string and returns the current class instance. If value is not specified, returns the current label accessor, which is the id accessor by default.

Kind: static method of Legend

ParamType
[value]function | String

Legend.outerBounds()

If called after the elements have been drawn to DOM, will returns the outer bounds of the legend content.

Kind: static method of Legend
Example

{"width": 180, "height": 24, "x": 10, "y": 20}

Legend.padding([value])

If value is specified, sets the padding between each key to the specified number and returns the current class instance. If value is not specified, returns the current padding value.

Kind: static method of Legend

ParamTypeDefault
[value]Number10

Legend.select([selector])

If selector is specified, sets the SVG container element to the specified d3 selector or DOM element and returns the current class instance. If selector is not specified, returns the current SVG container element.

Kind: static method of Legend

ParamTypeDefault
[selector]String | HTMLElementd3.select("body").append("svg")

Legend.shape([value])

If value is specified, sets the shape accessor to the specified function or string and returns the current class instance. If value is not specified, returns the current shape accessor.

Kind: static method of Legend

ParamTypeDefault
[value]function | String"Rect"

Legend.shapeConfig([config])

If config is specified, sets the methods that correspond to the key/value pairs for each shape and returns the current class instance. If config is not specified, returns the current shape configuration.

Kind: static method of Legend

ParamTypeDefault
[config]Object{}

Legend.title([value])

If value is specified, sets the title of the legend and returns the current class instance. If value is not specified, returns the current title.

Kind: static method of Legend

ParamType
[value]String

Legend.titleConfig([value])

If value is specified, sets the title configuration of the legend and returns the current class instance. If value is not specified, returns the current title configuration.

Kind: static method of Legend

ParamType
[value]Object

Legend.verticalAlign([value])

If value is specified, sets the vertical alignment to the specified value and returns the current class instance. If value is not specified, returns the current vertical alignment.

Kind: static method of Legend

ParamTypeDefaultDescription
[value]String"middle"Supports "top" and "middle" and "bottom".

Legend.width([value])

If value is specified, sets the overall width of the legend and returns the current class instance. If value is not specified, returns the current width value.

Kind: static method of Legend

ParamTypeDefault
[value]Number400
Documentation generated on Mon, 17 Oct 2016 20:05:50 GMT

Keywords

FAQs

Package last updated on 17 Oct 2016

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