// Data retrieved from https://netmarketshare.com/
// Build the chart
Highcharts.chart('container', {
chart: {
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false,
type: 'pie'
},
title: {
text: 'Browser market shares in March, 2022',
align: 'left'
},
tooltip: {
pointFormat: '{series.name}: {point.percentage:.1f}%'
},
accessibility: {
point: {
valueSuffix: '%'
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: false
},
showInLegend: true
}
},
series: [{
name: 'Brands',
colorByPoint: true,
data: [{
name: 'Chrome',
y: 74.77,
sliced: true,
selected: true
}, {
name: 'Edge',
y: 12.82
}, {
name: 'Firefox',
y: 4.63
}, {
name: 'Safari',
y: 2.44
}, {
name: 'Internet Explorer',
y: 2.02
}, {
name: 'Other',
y: 3.28
}]
}]
});