X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=tests%2Fx-axis-formatter.html;h=d216c9796afbc593fe3a350c907529b301e7d94e;hb=197b2754b31117cf74d2ed0f54d1ef1a74c298f3;hp=b6e81e6a1552bb64b51d9e7a6f8d49995e8e144f;hpb=e5152598cf72fb46c396f79edebc68e9fb4fec73;p=dygraphs.git diff --git a/tests/x-axis-formatter.html b/tests/x-axis-formatter.html index b6e81e6..d216c97 100644 --- a/tests/x-axis-formatter.html +++ b/tests/x-axis-formatter.html @@ -6,10 +6,12 @@ - - - - + + +

Original data:

@@ -34,32 +36,38 @@ "2009/07/12 06:00:00,4,6" } - new Dygraph( + var g1 = new Dygraph( document.getElementById("normal"), HourlyData() ); - new Dygraph( + var g2 = new Dygraph( document.getElementById("offby2"), HourlyData(), { - xAxisLabelFormatter: - function(d, gran) { - return Dygraph.dateAxisFormatter(new Date(d.getTime() + 7200*1000), gran); + axes: { + x: { + axisLabelFormatter: function(d, gran) { + return Dygraph.dateAxisFormatter(new Date(d.getTime() + 7200*1000), gran); + } } + } }); - new Dygraph( + var g3 = new Dygraph( document.getElementById("seconds"), HourlyData(), { xAxisLabelWidth: 70, - xAxisLabelFormatter: - function(d, gran) { - return Dygraph.zeropad(d.getHours()) + ":" - + Dygraph.zeropad(d.getMinutes()) + ":" - + Dygraph.zeropad(d.getSeconds()); + axes: { + x: { + axisLabelFormatter: function(d, gran) { + return Dygraph.zeropad(d.getHours()) + ":" + + Dygraph.zeropad(d.getMinutes()) + ":" + + Dygraph.zeropad(d.getSeconds()); + } } + } });