i did every thing and understand clearly and drew the graph successfully.but
the problem is tht i m not getting anything on the x axis while it is expected
to draw the 2 aug ,3 aug,4 aug ......8 aug.
i have checked everywhere and not getting these points and if i specify min and
max options like below, nothing is displayed
here is my code to draw the plot graph
function GotGraph(data) {
gdata = data;
var lastWeek = new Date();
lastWeek.setDate(lastWeek.getDate());
$.plot($("#graphHolder"), gdata, { xaxis: { mode: "time",min: (lastWeek).getTime(),max: (new Date()).getTime()}
});
}
here gdata is having series like [date ,data]
date is in long like date:1320545415454000
and data is like data: 10 or 2o or 30 etc.
i m attaching the javascript page where i have written every thing and the java
code from which i m accessing tht js file.
Original issue reported on code.google.com by yourans...@gmail.com on 8 Aug 2011 at 1:53
Original issue reported on code.google.com by
yourans...@gmail.com
on 8 Aug 2011 at 1:53Attachments: