I am quite new to Plotly and I am trying to create a radar chart using Plotly. I have a problem with the chart when I add a IDs trace within my chart. The points and text disappear when I add IDs within my chart.
Without ID trace:
data = [
{
type: 'scatterpolar',
r: [39, 28, 8, 7, 28, 39],
theta: ['A','B','C', 'D', 'E', 'A'],
text:['A','B','C', 'D', 'E', 'A'],
mode: 'markers+lines+text',
fill: 'toself',
name: 'Group A'
}
data = [{type: 'scatterpolar',
r: [39,19,9,49,3],
theta: [A,B,C,D,E],
text: ['testing 1','testing 2','testing 3','testing 4','testing 5'],
ids: [1,2,3,4,5],
fill: "toself",
name: 'Testing 1',
mode: 'markers+line+text'
}]