d3-scale-interactive
Demo: http://peterbeshai.com/vis/d3-scale-interactive/
Modify your d3-scales interactively in your browser with this plugin. You can change nearly all aspects of the scale via the user interface and see your charts update dynamically.
Idea
What if you could interactively play with your scales in any vis, just by replacing your initialization of the scales
const colorScale = d3;
with
const colorScale = d3;
This way it's easy to develop with/turn on and off. Here updateChart
is the function called to re-draw a chart with updated properties or data.
Example
Original
color = d3 ;
With interactivity
color = d3 ;
User Interface Controls
Each scale gets its own panel in the user interface that can be collapsed or expanded by clicking the header. Beneath the header are five commands: Pin, Code, Debug, Stats, and Reset.
Pin
If your update callback recreates your scale or modifies some properties of the scale, you may want to pin the scale in the UI. This prevents all changes made outside the UI from affecting the scale. This control is a toggle.
Code
Outputs the javascript code needed to recreate the scale to the browser's console.
Debug
Adds the scale to the global _scales
object allowing you to access your scale in the console. Each scale will have three entries in _scales
. If your scale name was color
, you'd see:
_scales.color
- The scale object used by scaleInteractive. Updating values to this will be reflected automatically in the UI and in the stats collection._scales.colorRaw
- The d3 scale that is wrapped by scaleInteractive._scales.colorScaleProxy
- The ScaleProxy object used by scaleInteractive.
Stats
Displays histograms or bar charts of the domain and range values used by the scale. This control is a toggle.
Reset
Resets the changes made through the scaleInteractive user interface.
Development
Get rollup watching for changes and rebuilding
npm run watch
Run a web server in the example directory
cd examplephp -S localhost:8000
Go to http://localhost:8000
Installing
If you use NPM, npm install d3-scale-interactive
. Otherwise, download the latest release.
API Reference
# scaleInteractive(name, updateFunction)
Creates an interactive UI in the browser to modify scale parameters within. You must provide a unique name for the scale, as well as updateFunction - the function used to redraw your visualization when data or other properties change.
Example usage:
var x = d3;... { d3datanewData ; ...}
# scaleInteractive.options(options)
Updates the global scale interactive options with an options object. Currently there is only one option:
- startHidden (default:
false
): initializes the main UI to begin collapsed
These options must be set before any other call to scaleInteractive as they are not read past initialization.
Example usage:
d3scaleInteractiveoptions startHidden: true ;