I want to visualize some data in the browser with a line chart. At the x-axis there should be the date, at the y-axis there should be the value.
I know that there are some javascript plotting solutions out there. But especially for date-specific data it is difficult to find a suitable solution.
Here is the scheme, how i have the data:
[
[
startTimestamp,
endTimestamp,
value
],
[
startTimestamp,
endTimestamp,
value
]
]
Here with some example values:
[
[
1365163327,
1365163339,
0
],
[
1365163339,
1365163360,
1
]
]
See js-fiddle here, with some better sample data: