GithubHelp home page GithubHelp logo

wildhoney / emberrickshaw Goto Github PK

View Code? Open in Web Editor NEW
6.0 4.0 2.0 3.29 MB

Rickshaw façade for Ember which allows automatic redrawing of graphs using Ember's observer pattern.

JavaScript 98.27% HTML 0.36% CSS 1.37%

emberrickshaw's Introduction

Ember Rickshaw

 

Using the Rickshaw graphing library with Ember – utilising Ember's observer pattern to automatically update the Rickshaw graph when any value in the model changes, and even when models are added and/or removed from the collection.

Live Demo

An example of the automatic updating of graphs using Ember's observer pattern: https://dl.dropboxusercontent.com/sh/kgs9r55hguttkjf/qZ-pBUYz-a/example/dropbox/index.html.

Tutorial

You'll be glad to know that if you already know Rickshaw, we haven't changed anything! So how does it work? Well, instead of instantiating Rickshaw.Graph, instead instantiate Rickshaw.Graph.Ember.

var graph = new Rickshaw.Graph.Ember({
    renderer: 'area',
    element: document.querySelector('.age-distribution-graph'),
    width: 500,
    height: 250,
    stroke: true,
    collection: this.get('controller'),
    series: [{
        color: '#cae2f7',
        property: 'age'
    }]
});

If you're perceptive, you'll notice the only difference is that instead of specifying the array for the property attribute, you're instead supplying the property name on the model – we also supply the collection attribute.

  • collection: collection of models to take the data from;
  • property: property name which we'll pluck from the collection;

Once you've configured the Rickshaw class, you can go ahead and manipulate your Ember models as you usually do, and Rickshaw.Graph.Ember will update itself when necessary.

Insufficient Data

Sometimes there is not enough data to create the graph, therefore to display a message when there is insufficient data, create a node with the class name no-data inside of your graph container (age-distribution-graph in the example) and we'll do the rest!

Multiple Series Lines

Rickshaw supports plotting multiple layers, and because Rickshaw supports it, so do we! By now it should be self-evident how this works if you're familiar with Rickshaw:

var graph = new Rickshaw.Graph.Ember({
    renderer: 'bar',
    element: document.querySelector('.age-distribution-graph'),
    unstack: true,
    width: 500,
    height: 250,
    stroke: true,
    collection: this.get('controller'),
    series: [{
        color: '#afd55e',
        name: 'Age',
        property: 'age'
    }, {
        color: '#ba5ed5',
        name: 'Caught Mice',
        property: 'caughtMice'
    }]
});

You'll be happy to know that you can have as many groups as you like!

Writing Unit Tests

We make it easy for you to write unit tests for your graphs. Simply pass in the options minus the element item, and we'll create an empty node to use for testing.

emberrickshaw's People

Contributors

wildhoney avatar

Stargazers

Jonathan Barratt avatar Summer Schrader avatar Michael Anthony avatar  avatar  avatar  avatar

Watchers

James Cloos avatar  avatar Michael Anthony avatar  avatar

Forkers

arohr walternate

emberrickshaw's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.