stacking horizontal bars
http://stackoverflow.com/questions/9643002/how-can-i-display-stacked-barcharts-horizontally-in-flot
by ryleyb
HTML
<script src="http://flot.googlecode.com/svn/trunk/jquery.flot.js"></script>
<script src="http://flot.googlecode.com/svn/trunk/jquery.flot.stack.js"></script>
<div id="placeholder" style="width:600px;height:300px;"></div>
JavaScript
var data = [{ "data": [[0, 0], [1, 0], [2, 0], [3, 0], [4, 0], [5, 0], [6, 0], [7, 0], [8, 0], [9, 2], [10, 0], [11, 0], [12, 0], [13, 0], [14, 0], [15, 0], [16, 0], [17, 0], [18, 0], [19, 0], [20, 0], [21, 4], [22, 0], [23, 0], [24, 0], [25, 6], [26, 9], [27, 0], [28, 0], [29, 0], [30, 0], [31, 0], [32, 0]], "label": "Concluded"}, {"data": [[0, 0], [1, 0], [2, 0], [3, 1], [4, 2], [5, 2], [6, 4], [7, 1], [8, 0], [9, 11], [10, 0], [11, 0], [12, 0], [13, 0], [14, 0], [15, 0], [16, 0], [17, 1], [18, 0], [19, 1], [20, 2], [21, 1], [22, 1], [23, 1], [24, 0], [25, 0], [26, 6], [27, 0], [28, 1], [29, 0], [30, 0], [31, 0], [32, 0]], "label": "Requested"}, {"data": [[0, 0], [1, 0], [2, 1], [3, 4], [4, 1], [5, 6], [6, 0], [7, 1], [8, 0], [9, 21], [10, 1], [11, 0], [12, 2], [13, 0], [14, 3], [15, 0], [16, 0], [17, 0], [18, 0], [19, 0], [20, 0], [21, 3], [22, 0], [23, 2], [24, 0], [25, 1], [26, 1], [27, 0], [28, 1], [29, 4], [30, 1], [31, 0], [32, 0]], "label": "Accepted"}, {"data": [[0, 0], [1, 1], [2, 7], [3, 1], [4, 6], [5, 0], [6, 4], [7, 15], [8, 0], [9, 5], [10, 4], [11, 3], [12, 0], [13, 0], [14, 3], [15, 1], [16, 0], [17, 3], [18, 3], [19, 3], [20, 7], [21, 21], [22, 3], [23, 1], [24, 0], [25, 16], [26, 14], [27, 3], [28, 8], [29, 6], [30, 1], [31, 3], [32, 1]], "label": "Created"}, {"data": [[0, 0], [1, 0], [2, 1], [3, 1], [4, 1], [5, 0], [6, 1], [7, 1], [8, 0], [9, 6], [10, 0], [11, 0], [12, 1], [13, 0], [14, 0], [15, 1], [16, 0], [17, 0], [18, 0], [19, 0], [20, 0], [21, 0], [22, 0], [23, 1], [24, 0], [25, 5], [26, 2], [27, 0], [28, 0], [29, 1], [30, 0], [31, 0], [32, 0]], "label": "Cancelled"}];
var tick_labels = [[0, "Group 0"], [1, "Group 1"], [2, "Group 2"], [3, "Group 3"], [4, "Group 4"], [5, "Group 5"], [6, "Group 6"], [7, "Group 7"], [8, "Group 8"], [9, "Group 9"], [10, "Group 10"], [11, "Group 11"], [12, "Group 12"], [13, "Group 13"], [14, "Group 14"], [15, "Group 15"], [16, "Group 16"], [17, "Group 17"], [18, "Group 18"], [19, "Group 19"], [20,...