Hi, I’m trying to plot a parallel coordinate plot. Everything seems working as long as my “values” index in my “dimension” has less or equal to 10,00000 number of values. The moment I’m increasing that to more than 10,00000 it showing “RangeError: Invalid array length” error.
Attaching a screenshot from my dev console for ref.
The piece of code I’m using is
var trace = {
type: 'parcoords',
line: {
color: 'blue'
},
dimensions: plotDimension
};
console.log('trace: ', trace)
var data = [trace]
Plotly.newPlot('graphDiv', data);
How can I fix this?