dataslider
dataslider
Dataslider is a completely abstracted slide-as-a-paramter user interface.
For example:
This list of words are being emitted to the slider.
var words = ['Buffalo Trace', 'Laphroaig', 'Glennfiddich', 'Glenlivet', 'Bullit', 'Woodford Reserve'];
var give = function() {
if (words.length > 1) {
slidersource.emit('data',words.pop());
setTimeout(give,3000);
}
}
setTimeout(give,3000)
node-chart
Node-chart
It does dynamic scaling based on data, and also dynamic scaling based on legend selection.
It has configurable colors everywhere, and automatically generated colors when you don't know
what you want. It knows what you want.