Is there a way to plot graphs with +-standard deviation about the mean using the jqplot graphs? I know there are candlestick graphs in jqplot but they do not link each candlestick with each other. What I am looking for is like a line graph with for each point, +- standard deviation is marked on it. Consider this graph for example
http://www.csupomona.edu/~jcclark/classes/old/bio542l/graphics/g-line.gif
I do not believe there is built-in support for this in jqplot. Your choices are three:
1.) Use what is built in: the the banded line/confidence intervals.
2.) Hack it yourself. After you draw your plot, add additional vertical series for each hi/low standard deviation. This is the option I would use.
3.) Follow one of the posts here and modify the candle stick plugin (ohlc plugin) to provide the functionality.