My data are like as in below image :
The Rickshaw graph is perfect for this data because the date and time interval between all dates are long. I have set "price" column as Y-Axis data and "date" column as X-Axis data. But when i add new entry like as below image then new point not showing for this new entry because the time interval is 1 minute.
See the entry of id 26 and 27, the time interval is 1 min and 2 second. So graph don't show this new point. And also i want to set the date as values of X-Axis data with each and every points.
After the entry of 27, my graph didn't show the point of 300. My graph shows the 26th entry with 65 price. See on below image.
May be it will hide because of interval. And if i increase the interval, then it'll display fine.



Both questions you had is regarding the Axis X of the graph. From the screenshot that you posted I assume that the X axis is taking integer values (23, 24, 25 etc. is around the peak of your graph).
In order to plot your last point into the graph you only have insert one more element into the array and render the graph. Below there is an example of a dataset [12x2].
Regarding your last question, if you want to render the time in the X Axis you need to use
Rickshaw.Graph.Axis.TimeFor example:
For Axis.Time you need to make sure that your data (in your case the data from column 'date') are in a proper format.
Try to use
.toUTCString()you can find an example here.