- var graphs = [
- {w:1, h:1, label:'hello'}
- ];
- graphs.each(function(graph){
- var vis = new pv.Panel()
- vis.add(graph.label)
- .data(["Turker Task Group Completion %"])
- .left(-35)
- .top(graph.h / 2)
- .textAlign("center")
- .textAngle(-Math.PI / 2)
- .font("bold 11px sans-serif");
- });