https://github.com/zweifisch/knockout-morris
morris handler for knockoutjs
https://github.com/zweifisch/knockout-morris
Last synced: about 2 months ago
JSON representation
morris handler for knockoutjs
- Host: GitHub
- URL: https://github.com/zweifisch/knockout-morris
- Owner: zweifisch
- Created: 2014-01-24T13:04:21.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-24T13:17:45.000Z (over 11 years ago)
- Last Synced: 2025-02-28T06:53:08.280Z (3 months ago)
- Language: CoffeeScript
- Size: 211 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# knockout-morris
morris handler for knockoutjs
```html
``````javascript
var model = {
line: ko.observable()
};
model.line([
{ year: '2008', value: 20 },
{ year: '2009', value: 10 },
{ year: '2010', value: 5 },
{ year: '2011', value: 5 },
{ year: '2012', value: 20 }
]);
ko.applyBindings(model);
```[more charts](http://zweifisch.github.io/knockout-morris/)