https://codepen.io/nmnuou/pen/VwQQBNR
El trazo predeterminado de la telaraña se establece en 2 y 3 para pasar el mouse. Me gustaría cambiar esto a 1 y 2. Si configura el ancho de trazo en gráfico de gráficos altos en css, puede cambiar el grosor de la línea, pero no hay mouseover.
enter code here Highcharts.chart('info_chart', { chart: { polar: true, type: 'area', }, accessibility: false, title: false, xAxis: { categories: ['Sales', 'Marketing', 'Development', 'Customer Support', 'Information Technology', 'Administration', 'ghj'], tickmarkPlacement: 'on', lineWidth: 0 }, yAxis: { gridLineInterpolation: 'polygon', lineWidth: 0, min: 0, max: 150, tickInterval:50 }, tooltip: { shared: true, pointFormat: '<span style="color:{series.color}">{series.name}: <b>${point.y:,.0f}</b><br/>' }, legend: false, colors: ['#FF5D87'], series: [{ name: 'Allocated Budget', data: [73, 89, 60, 55, 97, 110, 60], pointPlacement: 'on' ,strokeWidth:1 ,max:100, }], responsive: { rules: [{ condition: { maxWidth: 500 }, chartOptions: { legend: { align: 'center', verticalAlign: 'bottom', layout: 'horizontal' }, pane: { size: '70%' } } }] } });