1.0.0 • Published 6 years ago

ember-cli-bar-view v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

ember-cli-bar-view

Build Status

Addon renders a bars visualization of data. Designed to use as a filter

DEMO

This README outlines the details of collaborating on this Ember addon.

model() {
  return Ember.makeArray([
    { label: 'Test 0',  value: 90 },
    { label: 'Test 1',  value: 86 },
    { label: 'Test 2',  value: 77 },
    { label: 'Test 3',  value: 60 },
    { label: 'Test 4',  value: 50 },
    { label: 'Test 5',  value: 40 },
    { label: 'Test 6',  value: 30 },
    { label: 'Test 7',  value: 15 },
    { label: 'Test 8',  value: 1 },
  ]);
}

clickedItem: null,
actions: {
  clickAction(item) {
    this.set('clickedItem', item);
  }
}

{{ember-cli-bar-view data=model clickAction=(action 'clickAction')}}

Installation

  • git clone <repository-url> this repository
  • cd ember-cli-bar-view
  • npm install

Running

Running Tests

  • npm test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit https://ember-cli.com/.

1.0.0

6 years ago

0.3.0

6 years ago

0.2.0

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago