Deprecated: Please see (and use) ember-primer instead, as this is no longer maintained
Template driven data visualisation for ambitious applications.
Maximum Plaid is designed to be a high level visualisation library built exclusively for Ember. It uses Ember's templating language to efficiently and declaratively produce easily maintained and tested visualisations.
We're building this because traditional charting libraries often times have poor separation of concerns from data and presentation, which leads to poor maintainability and code reuse, as well as exhibiting poor performance with medium to large datasets (10K to 100K data points).
We desire something which exposes abstractions for efficiently expressing a wide variety of visualisations, while balancing expressiveness such that you're not locked in to one particular style of visualisation which doesn't quite express the discoveries you've made in your data.
Visualisations are composed in layers, starting with data transformation down to visualisation and interaction.
In order to provide a consistent API for each visualisation layer, we do the data setup ahead of time. After you've loaded your data source, you should transform it to the necessary shape for the type of visualisation you're rendering.
We provide a few helpers to make this easy (more soon).
# pair-by
(attr, [attr2,] series)
Basically a multi-property
map-by
.
Takes an array of objects containing discrete properties for each axis of your visualisations, and returns an array of tuples containing only the values for each attribute.
Given the series:
let timeSeriesData = [
{ timestamp: 1450345920000, value: 1, projectId: 200 },
{ timestamp: 1450345930000, value: 2, projectId: 200 },
{ timestamp: 1450345940000, value: 3, projectId: 200 },
{ timestamp: 1450345950000, value: 4, projectId: 200 },
{ timestamp: 1450345960000, value: 5, projectId: 200 }
];
Using pair-by
in your template:
Would produce:
[
[1450345920000, 1],
[1450345930000, 2],
[1450345940000, 3],
[1450345950000, 4],
[1450345960000, 5]
]
Which is ideal for using as the values
argument to plaid.line
and plaid.area
.
SVG doesn't use the same coordinate space as CSS, so we have to calculate margins manually. To help out with this we've included an area
helper, which returns an object containing the positioning data for your chart.
# area
(width height [margin="TOP RIGHT BOTTOM LEFT"])
The margin string follows the typical box model margin convention of TOP, RIGHT, BOTTOM, LEFT. All values are unitless and inherit their units from the coordinate space with the SVG context.
On their own, components for even the simplest elements in a visualisation can quickly require complicated APIs. To solve this, Ember contextual components can provide lower level primitive components with the necessary inputs for scaling and positioning. This reduces the API surface for the user to quickly produce visualisations in very few lines of code.
A more complete example, using scales from ember-d3-scale and helpers from ember-composable-helpers
This will produce a pretty simple line + area chart:
Provides an easy to use and straight forward interface to d3-shape
's symbol
generators. primitive-symbol
can be used in the same way as any Ember component
and will render as a <path>
tag containing the path data for the specified
symbol type.
type
: Symbol to render, can be any ofcircle
,diamond
,cross
,square
,star
,triangle
,wye
.size
: Specifies the symbol render size. This is the area of the symbol, which typicall equates to 1/4th of the actual width or height, depending on the shape.fill
: SVG pathfill
property.stroke
: SVG pathstroke
property.strokeWidth
: SVG pathstroke-width
property.top
: Top offset (applied using transform).left
: Left offset (applied using transform).
Provides simple calculations for specifying the position of the main graphic in a visualisation.
import { PlotArea } from 'maximum-plaid/mixins/plot-area';
export default Component.extend(PlotArea, {
margin: '16 24',
didRender() {
const { top, left } = this.get('plotArea');
select(this.element).select('g.plot').attr('transform', `translate(${left},${top})`);
}
});
Creates a computed property which calculates the extent of all inputs provided
using extent
from d3-array.
NOTE: maximum-plaid
requires Ember v2.3+
ember install maximum-plaid
ember server
- Visit your app at http://localhost:4200.
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
Ivan: Initially I was searching name which represented both a type of fabric for the visualisation metaphore, but also I've been told that friends have lost me in crowds walking around Williamsburg because I wear so much plaid. Also, the goal of this project is to make data visualisation easy and efficient, so in keeping with the promised performance mode of the next Tesla Roadster, I found "maximum plaid" to be fitting.
That's not a question.
As the main author of this project is Australian — a country which speaks a
variation of British English, words such as visualisation
are spelt with an s
instead of a z
. Another word you may find incorrectly spelt is colour
. Please
don't issue Pull Requests to fix this.