When using the selected points functionality, I want to be able to change the size and marker symbol of those points. The size works just fine, but the symbol does not.
Here is an example:
var trace2 = {
x: [1, 2, 3, 4],
y: [11, 12, 13, 14],
mode: 'markers',
marker: {
color: 'rgb(31, 119, 180)',
size: 18,
symbol: 'circle',
},
selectedpoints: [1],
selected: {
marker: {
size: 30,
symbol: 'diamond-open'
},
},
type: 'scatter'
};
The index for selectedpoints works, the marker size also works, but the marker symbol does not. If I am doing something wrong please let me know!