From d8538d448b4ba3077caed84b402f195461d5ab33 Mon Sep 17 00:00:00 2001 From: Olly Smith Date: Tue, 26 Jun 2012 07:54:04 +0100 Subject: [PATCH] Testing #65. --- examples/non-continuous.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/non-continuous.html b/examples/non-continuous.html index f6582ae..e314850 100644 --- a/examples/non-continuous.html +++ b/examples/non-continuous.html @@ -20,7 +20,7 @@ var day_data = [ {"period": "2012-09-29", "sorned": 618}, {"period": "2012-09-20", "licensed": 3246, "sorned": 661}, {"period": "2012-09-19", "licensed": 3257, "sorned": null}, - {"period": "2012-09-18", "licensed": 3248}, + {"period": "2012-09-18", "licensed": 3248, "other": 1000}, {"period": "2012-09-17", "sorned": 0}, {"period": "2012-09-16", "sorned": 0}, {"period": "2012-09-15", "licensed": 3201, "sorned": 656}, @@ -30,8 +30,8 @@ Morris.Line({ element: 'graph', data: day_data, xkey: 'period', - ykeys: ['licensed', 'sorned'], - labels: ['Licensed', 'SORN'], + ykeys: ['licensed', 'sorned', 'other'], + labels: ['Licensed', 'SORN', 'Other'], /* custom label formatting with `xLabelFormat` */ xLabelFormat: function(d) { return (d.getMonth()+1)+'/'+d.getDate()+'/'+d.getFullYear(); }, /* setting `xLabels` is recommended when using xLabelFormat */