Created
September 8, 2015 22:29
-
-
Save JordiCorbilla/d69d6a5fdbb08ad4355f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
var line1=[['2008-08-12 4:00PM',4], ['2008-09-12 4:00PM',6.5], ['2008-10-12 4:00PM',5.7], ['2008-11-12 4:00PM',9], ['2008-12-12 4:00PM',8.2]]; | |
var plot1 = $.jqplot('chart1', [line1], { | |
title:'Default Date Axis', | |
axes:{ | |
xaxis:{ | |
renderer:$.jqplot.DateAxisRenderer | |
} | |
}, | |
series:[{lineWidth:4, markerOptions:{style:'square'}}] | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment