Posts by Guilherme Borges • 16 points
2 posts
-
0
votes1
answer37
viewsA: How to make chart responsive with Highcharts?
If you fix the width and height will get in the way. In the div that surrounds the highCharts tag you can put a class and add: .graficos { display: flex; flex-wrap: wrap; } .grafico { width: 700px;…
-
0
votes1
answer31
viewsA: Stop Loop For when a certain number is typed
I ran your code and it works normally, so it’s even easier to see: var numero = prompt('Digite o numero') var arrNumero = [1,2,3,numero,5,6,7] console.log(arrNumero) for (let i = 0; i <…