Hi everyone
I am pltting a simple graph using plotly(offline) . I want to display y axis values corresponding to x axis values along with error bars in y axis . I am using error_y to plot the errors . However I am able to plot the x,y coordinates but I am not getting the error bars in in my final result . I am using following code :
Actually I have copied the same code from over there … In my index.html (that i am using to display plot) I am u sing the following code . This might make myself clear !
`
<div class="hello" id="section" >
<script type="text/javascript">
var graphs = {{graphJSON | safe}};
var ids = {{ids | safe}};
for(var i in graphs) {
Plotly.plot("section", // the id of the div, created above
graphs[i].data,
graphs[i].layout || {});
}
</script> </div>
Do You find anything wrong over here
I am new to plotly
Click anywhere in the chart. next to the chart, and then check the Error Bars box. (Clear the box to remove error bars.) To change the error amount shown, click the arrow next to Error Bars, and then pick an option.