Giter Club home page Giter Club logo

stacked-bar-chart's Introduction

Stacked Bar Charts - an AngularJS directive

This is a dead simple directive that implements a basic AngularJS directive for stacked bar charts. It was made taking into account a very specific environment:

  • Angular 1.3.x
  • Globally available d3 object

The code is based on this example.

Install

For now, I'd suggest to use npm and napa to install the module.

Usage

Just add <stacked-bars data="{{controller.data}}" options="{{controller.options}}"></stacked-bars>

Directive Options

Options

An hash of params to setup the chart behaviour:

  • width (int): the width of the svg element;
  • height (int): the height of the svg element;
  • margin[Left|Right|Top|Bottom] (int): sets the margin of the chart relatively to the svg element;
  • visibleXX (boolean): sets the visibility of the XX axis;
  • visibleYY (boolean): sets the visibility of the YY axis;
  • stacksColor (array): an array of colors for each stack in the chart;
  • stacks (array): an array of values to build the stacks;
  • xx (string): a string defining which values should be used in XX axis;

E.g.:

$scope.options = {
  visibleYY: false,
  stacksColor: ['orange', 'yellow'],
  xx: 'x',
  stacks: ['y', 'z']
}

Data

An array of data structures. E.g.:

(...)
$scope.data = [
  {x: 'Foo', y: 5, z: 8},
  {x: 'Bar', y: 7, z: 3}
];
(...)

Example

Controller

angular.module( "app" )
  .controller( "ChartController" ["$scope", function( $scope ) {
    $scope.data = [
      {x: "Foo", y: 5, z: 8},
      {x: "Post B", y: 7, z: 3}
    ];

    $scope.options = {
      visibleYY: false,
      stacksColor: ["orange", "yellow"],
      xx: "x",
      stacks: ["y", "z"]
    };
  }]);

Template

<stacked-bars
  data="{{data}}"
  options="{{options}}">
</stacked-bars>

TODO

  • Tidy up the code and add tests;
  • Make this a proper package;
  • Accept CSS classes to style bars, axis and other relevant elements;
  • Animate bars drawing;
  • ...

License

WTFPL

stacked-bar-chart's People

Contributors

rsoares avatar

Stargazers

 avatar

Watchers

 avatar

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.