David-Desmaisons / vue-plotly

📈 vue wrapper for plotly.js
https://david-desmaisons.github.io/vue-plotly/
MIT License
255 stars 74 forks source link

Vue-Plotly is not using "colorscale" attribute #35

Open BullfroG21 opened 3 years ago

BullfroG21 commented 3 years ago

Hi,

I am trying to dynamically adjust the color of a scatter plot. However, if I use the colorscale attribute, the selected color is simply ignored. It just uses the default color scale:

this.data.push({ x: x, y: y, type: 'scatter', mode: 'markers', marker: { colorscale: 'ice', color: x } })

image

(The colorscale "ice" is supposed to be blue.)

Furthermore, if remove I remove the parameter colorscale I get the same result as described above and if I remove the color attribute it uses one default color for all markers.

I am grateful for any input. Thx