Home

Awesome

NOTE: This package has been consolidated into the vega/vega repository, where future development and issues will be handled. This repository has been archived and is now read-only.

vega-scale

Scales and color schemes for visual encoding.

This module provides scale and scheme methods for managing scale mappings and color schemes. By default, the scale and scheme registries include all scale types and color schemes provided by the d3-scale and d3-scale-chromatic modules.

This module also provides augmented implementations of 'band', 'point', and 'sequential' scales in order to provide improved layout and inversion support for band/point scales, and multi-domain and color range array support for sequential scales.

API Reference

<a name="scale" href="#scale">#</a> vega.<b>scale</b>(<i>type</i>[, <i>scale</i>]) <>

Registry function for adding and accessing scale constructor functions. The type argument is a String indicating the name of the scale type. If the scale argument is not specified, this method returns the matching scale constructor in the registry, or null if not found. If the scale argument is provided, it must be a scale constructor function to add to the registry under the given type name.

By default, the scale registry includes entries for all scale types provided by the d3-scale module. Scales created using the constructor returned by this method have an additional type property indicating the scale type. All scales supporting either an invert or invertExtent method are augmented with an additional invertRange function that returns an array of corresponding domain values for a given interval in the scale's output range.

// linear scale
var linear = vega.scale('linear');
var scale = linear().domain([0, 10]).range([0, 100]);
scale.type; // 'linear'
scale.invertRange([0, 100]); // [0, 10]
var ordinal = vega.scale('ordinal');

// ordinal scale
var scale1 = ordinal().domain(['a', 'b', 'c']).range([0, 1, 2]);
scale1.type; // 'ordinal'

// ordinal scale with range set to the 'category20' color palette
var scale2 = ordinal().range(vega.scheme('category20'));
var seq = vega.scale('sequential');

// sequential scale, using the plasma color palette
var scale1 = seq().interpolator(vega.scheme('plasma'));
scale1.type; // 'sequential'

<a name="scheme" href="#scheme">#</a> vega.<b>scheme</b>(<i>name</i>[, <i>scheme</i>]) <>

Registry function for adding and accessing color schemes. The name argument is a String indicating the name of the color scheme. If the scheme argument is not specified, this method returns the matching scheme value in the registry, or null if not found. If the scheme argument is provided, it must be a valid color array or interpolator to add to the registry under the given name.

By default, the scheme registry includes entries for all scheme types provided by the d3-scale-chromatic module. Valid schemes are either arrays of color values (e.g., applicable to 'ordinal' scales) or interpolator functions (e.g., applicable to 'sequential' scales.)

<a name="schemeDiscretized" href="#schemeDiscretized">#</a> vega.<b>schemeDiscretized</b>(<i>name</i>[, <i>schemes</i>, <i>interpolator</i>]) <>

Registry function for adding and accessing discretized color schemes, consisting of an array of color schemes for specific value counts. The name argument is a String indicating the name of the color scheme. If the schemes argument is not specified, this method returns the matching array of color schemes value in the registry, or null if not found. If the schemes argument is provided, it must be an array of valid color arrays, with non-null entries at indices for each supported value count. For example, the array at index 3 should be a 3-color array. The optional interpolator argument provides a continuous color interpolator to use when a specific item count is not provided or undefined. If the interpolator argument is not provided, an interpolator will be automatically created using basis spline interpolation in the RGB color space for the last (largest) color array in schemes.

<a name="interpolate" href="#interpolate">#</a> vega.<b>interpolate</b>(<i>name</i>[, <i>gamma</i>]) <>

Returns the D3 interpolator factory with the given name and optional gamma. All interpolator types provided by the d3-interpolate module are supported. However, Vega uses hyphenated rather than camelCase names.

var rgbBasis = vega.interpolate('rgb-basis'); // d3.interpolateRgbBasis
var rgbGamma = vega.interpolate('rgb', 2.2);  // d3.interpolateRgb.gamma(2.2)

<a name="interpolateRange" href="#interpolateRange">#</a> vega.<b>interpolateRange</b>(<i>interpolator</i>, <i>range</i>]) <>

Given a D3 interpolator instance, return a new interpolator with a modified interpolation range. The range argument should be a two element array whose entries lie in the range [0, 1]. This method is convenient for transforming the range of values over which interpolation is performed.

var number = d3.interpolateNumber(0, 10);
number(0);   // 0
number(0.5); // 5
number(1);   // 1

var range = vega.interpolateRange(number, [0.2, 0.8]);
range(0);   // 2
range(0.5); // 5
range(1);   // 8

<a name="timeInterval" href="#timeInterval">#</a> vega.<b>timeInterval</b>(<i>unit</i>) <>

Given a string unit, return a corresponding D3 time interval function. Valid unit strings are: "millisecond", "second", "minute", "hour", "day", "week", "month", and "year".

<a name="utcInterval" href="#utcInterval">#</a> vega.<b>utcInterval</b>(<i>unit</i>) <>

Given a string unit, return a corresponding UTC-variant of a D3 time interval function. Valid unit strings are: "millisecond", "second", "minute", "hour", "day", "week", "month", and "year".