/home/techb158/workloadmatch.com/bower_components/morris.js/examples
NameSizeModeActions
lib/-0777rm
area-as-line.html10250777editdlrm
area.html10980777editdlrm
bar-colors.html12530777editdlrm
bar-no-axes.html10010777editdlrm
bar.html10420777editdlrm
days.html15530777editdlrm
decimal-custom-hover.html11920777editdlrm
diagonal-xlabels-bar.html15860777editdlrm
diagonal-xlabels.html15750777editdlrm
donut-colors.html11170777editdlrm
donut-formatter.html10640777editdlrm
donut.html9970777editdlrm
dst.html10330777editdlrm
events.html25090777editdlrm
goals.html10060777editdlrm
months-no-smooth.html15460777editdlrm
negative.html11860777editdlrm
no-grid.html15680777editdlrm
non-continuous.html17780777editdlrm
non-date.html12160777editdlrm
quarters.html25310777editdlrm
resize.html16440777editdlrm
stacked_bars.html10110777editdlrm
timestamps.html16250777editdlrm
updating.html13690777editdlrm
weeks.html24790777editdlrm
years.html14890777editdlrm
_template.html7080777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/morris.js/examples/quarters.html (2531B)

Formatting Dates with Quarters

/* data stolen from http://howmanyleft.co.uk/vehicle/jaguar_e_type */
var quarter_data = [
  {"period": "2011 Q3", "licensed": 3407, "sorned": 660},
  {"period": "2011 Q2", "licensed": 3351, "sorned": 629},
  {"period": "2011 Q1", "licensed": 3269, "sorned": 618},
  {"period": "2010 Q4", "licensed": 3246, "sorned": 661},
  {"period": "2010 Q3", "licensed": 3257, "sorned": 667},
  {"period": "2010 Q2", "licensed": 3248, "sorned": 627},
  {"period": "2010 Q1", "licensed": 3171, "sorned": 660},
  {"period": "2009 Q4", "licensed": 3171, "sorned": 676},
  {"period": "2009 Q3", "licensed": 3201, "sorned": 656},
  {"period": "2009 Q2", "licensed": 3215, "sorned": 622},
  {"period": "2009 Q1", "licensed": 3148, "sorned": 632},
  {"period": "2008 Q4", "licensed": 3155, "sorned": 681},
  {"period": "2008 Q3", "licensed": 3190, "sorned": 667},
  {"period": "2007 Q4", "licensed": 3226, "sorned": 620},
  {"period": "2006 Q4", "licensed": 3245, "sorned": null},
  {"period": "2005 Q4", "licensed": 3289, "sorned": null},
  {"period": "2004 Q4", "licensed": 3263, "sorned": null},
  {"period": "2003 Q4", "licensed": 3189, "sorned": null},
  {"period": "2002 Q4", "licensed": 3079, "sorned": null},
  {"period": "2001 Q4", "licensed": 3085, "sorned": null},
  {"period": "2000 Q4", "licensed": 3055, "sorned": null},
  {"period": "1999 Q4", "licensed": 3063, "sorned": null},
  {"period": "1998 Q4", "licensed": 2943, "sorned": null},
  {"period": "1997 Q4", "licensed": 2806, "sorned": null},
  {"period": "1996 Q4", "licensed": 2674, "sorned": null},
  {"period": "1995 Q4", "licensed": 1702, "sorned": null},
  {"period": "1994 Q4", "licensed": 1732, "sorned": null}
];
Morris.Line({
  element: 'graph',
  data: quarter_data,
  xkey: 'period',
  ykeys: ['licensed', 'sorned'],
  labels: ['Licensed', 'SORN']
});