🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Progressbarify is a jQuery plugin to visualize your tabular data that automatically converts numeric values within table cells into Excel Data Bar style progress bars.

Data-Bar

Documentation

jQuery Progressbarify

jQuery plugin to turn table cells into progress bars.

Example Usage

$(document).ready(function(e){     $('[data-progressbarify]').progressbarify(); }); 

Note: Progressbarify requires jQuery.

Arguments

$.fn.progressbarify({     targetColumn:    0,            // The column which the progress bar is applied to (default 0).     primaryColour:   '#31b0d5',    // The colour of the left side of the bar (default #31b0d5).     secondaryColour: 'transparent' // The colour of the right side of the bar (default transparent). }); 

Note: The value of targetColumn can be given as the value of the data-progressbarify attribute on the table.

Note: To apply the progress bar to multiple columns you can chain progressbarify calls, like $('#mytable').progressbarify({ targetColumn: 0 }).progressbarify({ targetColumn: 2 }).

Note: The value of targetColumn should start at 0.


You May Also Like