Customize error bars ticks

Here there,

I am wondering how to customize lower and upper ticks on error bars.
Typically, I would like to get only upper error bars, and get rid of the lower ticks.

Here is the kind of code I’ve used so far to get one-sided error bars.


import plotly.graph_objects as go
data = my dataframe
error_series = series containing error bar lengths
kwargs = dict(
    x=data['x'],
    y=data['y'],
    marker_color= my bar color,
    error_y= dict(
        type='data',
        color=, 
        thickness=0.5,
        symmetric=False,
        array=error_series ,
        arrayminus=[0] * len(error_series),
     )
)
figure.add_trace(go.Bar(**kwargs))

I have looked in Plotly documentation but I could not find anything linked to this.
Could you guys help me a little on this?

Thank you very much for your help!

1 Like