Disable text display in rangeslider area

I am implementing a scatterplot with labels next to the dots and a rangeslider. I want to display the labels in the chart area but not in rangeslider. I would like the rangeslider area to only display the dots. Is it possible to set the mode of the rangeslider different than the chart ?

I tried adding mode under the rangelsider attribute but it didn’t work.
xaxis: {
autorange: false,
fixedrange: false,
range: [moment.unix(‘1547882332’).format(‘YYYY-MM-DD hh:mm:ss’), moment.unix(‘1548936000’).format(‘YYYY-MM-DD hh:mm:ss’)],
showgrid: false,
rangeslider: {
mode: ‘markers’,
visible: true
}

Not at the moment, unfortunately. You can subscribe to Add way to set which traces show up in range slider plot · Issue #2010 · plotly/plotly.js · GitHub for the most up-to-date development info.

I implemented a workaround for it which works:

.rangeslider-rangeplot.xy .plot .scatterlayer.mlayer .text{
    display: none;
}