I tried the following example 3D Mesh example with AlphaNull to test alphahull but my jupyter notebook display just something blank.
When I set alphahull=5, the display is blank:

But when i set alphahull = 0, it works:

and when i set alphahull = -1, it works :

Why is this happening and how can I fix it? Thank you in advance for your help.
Unfortunately I think rendering for alphahull values larger than 0 may be broken as of the latest plotly update. I noticed that in the documentation page, their code example with
alphahull=5also doesn't render. I tried with other positive values and none of these render either (the same alpha shape algorithm is used for any alphanull > 0)However, I tried downgrading to
plotly==4.14.0and the same example withalphahull=5does render.So in your jupyter notebook, you can run the line
!pip install plotly==4.14.0in a separate cell and see if that allows you to render positive alphahull values.