Extra line overlaping zero line


at the bottom there is line with color of trace that overlaps zero line, first I thought maybe I had added color to zero line accidentally but thats not the case, if you zoom (2nd pic) you can see its a trace, and I dont have plot on those coordinates I have checked my data and also if there were data on those coordinates plotly addes some annotations when we hover but thats not happeing here, so 100% sure that line is not gettong plotted using data. is this some sort of artifact? Since I have three plots and 2 plots with data close to zero line have that extra line while the 3rd plot which doesnt have points close to zero line doesn’t seem to have this issue.

Did you find a solution for this im running into a similar issue where my second trace is also being overlapped with a zeroline line

That happens because you are closing the path of the trace, not because of the zeroline property. You already tried setting it to false. If the same thing happens, if your data in x are not consecutive, you will have that result, something like

x: [0, 1, 2, 3, 4, 0, 5, 6, 7, 8, 9, 0]

Your values ​​in x must be incremental or decremental, otherwise you will have that result. Check your values ​​in x carefully and order them.