An open API service indexing awesome lists of open source software.

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

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/)