Parcoords brush color

Hi!
I wasn’t able to find anything related to the topic: is it possible in some way to change the default color (magenta) of the brush in parcoords chart?

Thanks!

Not at the moment - unfortunately.

HI
I managed to change the color and the width of the plotly.js parcoords brushes.

Just put those lines after you created your parcoords chart.

  var ligneList = document.getElementsByClassName('highlight')
  for (var i = 0; i < ligneList.length; i ++) {
    ligneList.item(i).setAttribute('stroke', 'black')
    ligneList.item(i).setAttribute('stroke-width', '6')
  }

My first answer here, sorry for bad English.