Angular directive to draw simple charts on canvas
Copyright (C) 2015, Vladislav Kosko vladislav.kosko@gmail.com.
Include angular-flat-charts.js in your application.
<link href="../src/angular-flow-chart.css" />
<script src="../src/angular-flat-charts.js"></script>Add the module angularFlatCharts as a dependency to your app module:
var DemoApp = angular.module('DemoApp', ['angularFlatCharts']);
DemoApp.controller('DemoController', ['$scope',
function ($scope) {
$scope.data = [
{ 'x': 1, 'y': 10 },
{ 'x': 2, 'y': 11 },
{ 'x': 3, 'y': 15 },
{ 'x': 4, 'y': 0 },
{ 'x': 5, 'y': 6 },
{ 'x': 6, 'y': 7 },
{ 'x': 7, 'y': 3 },
{ 'x': 8, 'y': 5 },
{ 'x': 9, 'y': 8 },
{ 'x': 10, 'y': 3 },
{ 'x': 11, 'y': 10 },
{ 'x': 12, 'y': 18 },
{ 'x': 13, 'y': 14 },
{ 'x': 14, 'y': 1 },
{ 'x': 15, 'y': 10 }
];
}
]);Now you can start using directive
<div ng-controller="DemoController">
<flat-chart width="400" height="250" chart-data="data" color="whitesmoke"></flat-chart>
</div>