Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 15th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. var graphs = [
  2. {w:1, h:1, label:'hello'}
  3. ];
  4.  
  5. graphs.each(function(graph){
  6.     var vis = new pv.Panel()
  7.     vis.add(graph.label)
  8.         .data(["Turker Task Group Completion %"])
  9.         .left(-35)
  10.         .top(graph.h / 2)
  11.         .textAlign("center")
  12.         .textAngle(-Math.PI / 2)
  13.         .font("bold 11px sans-serif");
  14. });