- install
angular-morris-chartby bower or npm running the following command
$ bower install angular-morris-chart --save$ npm install angular-morris-chart --save-
Note: if you are asked about
Unable to find a suitable version for angularanswerangular#1.3.x which is required by angular-morris-chart. -
Note: if you are issued about
github.com connection timed outjust rungit config --global url.https://.insteadOf git://in terminal. -
include the file
angular-morris-chart.min.json your body. If do you use bower it should be located atbower_components/angular-morris-chart/src, else if do you use npm it should be located atnode_modules/angular-morris-chart/src, otherwise just include the fileangular-morris-chart.min.jsto your project.
example using bower
<script src="../bower_components/angular-morris-chart/src/angular-morris-chart.min.js"></script>example using npm
<script src="../node_modules/angular-morris-chart/src/angular-morris-chart.min.js"></script>- add
stpa.morrisas a module dependency to your app
angular.module('my.app', [
'stpa.morris'
])There are four directives based on morris.js
bar-chartline-chartdonut-chartarea-chart
Check out documentation for live examples
- install node and bower on your environment
- cd to your development folder and clone repo
$ git clone https://github.com/stpa-co/angular-morris-chart
$ cd angular-morris-chart- install module dependencies
$ npm install
$ bower install-
Note: if you are issued about
github.com connection timed outjust rungit config --global url.https://.insteadOf git://in terminal. -
serve project and do the work
$ gulp serve #Note: maybe you should have to use `sudo`- serve project on distribution mode
$ gulp serve:dist #Note: maybe you should have to use `sudo`- build project to distribution
$ gulp build #Note: maybe you should have to use `sudo`Note: running the command gulp build should generate minified src at src/angular-morris-chart.min.js, and the docs on dist/doc folder.
Note: running the command gulp serve should serve on http://localhost:3000/doc with live reload. It also should watch the changes to re-build all the things, generating minified src at src/angular-morris-chart.min.js, and docs on dist/doc folder.
Note: running the command gulp serve:dist should do the same above but with all bower dependencies minified.
Note: to update project src please open an issue, fork the project, do your work, run gulp build and make a pull-request. thx =D
Note: to update docs just run gulp build or ./buil.sh, and make a pull-request into gh-pages branch only with contents of dist/doc folder. I like to work with another folder only for the docs (pointing to the same remote), maybe you will also. You can use the build.sh script located in the root to automate the process, but check it before.
Note Also check the tasks located on gulp folder for more details.
Feel free to open issues if you run into a problem or if you just have suggestions. Pull Requests are always welcome.
- 1.0.0
- launched
angular-morris-chartfor easy creation ofmorris.jscharts.
- launched
The angular-morris-chart is open-sourced software licensed under the MIT license. Crafted by @stewones