Any Chart - BoxPlot

2
Hello,   I am trying to create a graph similar to basic box plot Box plots in JavaScript (plotly.com) var y0 = []; var y1 = []; for (var i = 0; i < 50; i ++) { y0[i] = Math.random(); y1[i] = Math.random() + 1; } var trace1 = { y: y0, type: 'box' }; var trace2 = { y: y1, type: 'box' }; var data = [trace1, trace2]; Plotly.newPlot('myDiv', data);   I want to create for eg: organization name on x axis and corresponding no of users on y axis represented by boxes. But I’m not able to understand how to make this work in anychart widget. Any help would be appreciated. Thanks
asked
1 answers
0

Hi Amal,

 

I learned a lot from:

https://www.youtube.com/watch?v=SMzYrc9h6ZQ&t=714s

 

Go Make It

answered