d3-mapping

0.3.0 • Public • Published

d3-Mapping

Build Status

A simple utility to make working with d3 scales easier.

Installation

npm install d3-Mapping

Usage

Designed to be used node style:

var Mapping = require("d3-mapping")

Initialize a new mapping with a scale and an accessor function

xScale = d3.scale.linear()
xAccessor = function(d){ return d.x }
 
= new Mapping(xScale, xAccessor)

x has convenience methods for a number of common tasks. For example:

  • x.scale holds the reference to the original scale.
  • x.range and x.domain provide convenient access to x.scale.domain and x.scale.range
  • x.place will map data points onto the screen. It does a little dance to prevent D3 from overwriting its this object, so you can use it in d3 attribute setters.
  • x.compute_domain(data, ordinal) will compute the domain of data, set ordinal == true to find the unique elements for the dimension rather than the extent
  • x.min and x.max give more flexibility in manipulating the domain of the mapping. If you provide one argument, the minimum (maximum) of the mapping domain is simply set to that argument. If you pass an array, they compute the minimum or maximum of the value returned by the accessor when applied to the array, and set the corresponding bound of the domain.

Check out a working example, or Read the literate source for more info

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.3.0
    2
    • latest

Version History

Package Sidebar

Install

npm i d3-mapping

Weekly Downloads

11

Version

0.3.0

License

MIT

Last publish

Collaborators

  • andrewwinterman