I'd like to draw a time series as a bar chart (I suppose it's also called column chart) preserving the scale of the time line. Example:
Could you recommend a javascript library providing the code with how to visualize it? I'm well aware of this answer and tried some of them, but couldn't come close to the desired outcome.
The example data in javascript format:
var arr = new Array();
arr[0] = -100;
arr[3.5] = 10;
arr[5] = 110;