JavaScript
Highcharts.chart('container', {
title: {
text: 'New Tab Extension Analytics'
},
subtitle: {
text: 'Memory usage reported in Task manager'
},
yAxis: {
title: {
text: 'Allocated Memory'
}
},
xAxis: {
title: {
text: 'Number of tabs opened'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
plotOptions: {
series: {
pointStart: 1
}
},
series: [{
name: 'No extension',
data: [91.2,101,111,119,131,138,147,160,166]
},{
name: 'Black with Opacity',
data: [74.5,84.1,91.1,105,106,120,128,136,150]
}, {
name: 'Multiple Images with Opacity(Current)',
data: [82.7,96,107,149,164,175,287,437,451]
}, {
name: 'Black without Opacity',
data: [61.3,65.1,65.6,66.5,68.4,69.9,71.6,73.1,74.9]
}, {
name: 'Low Res Single Image (60KB) with Opacity',
data: [85.1,105,119,130,142,153,164,176,187]
}, {
name: 'Low Res Single Image (60KB) without Opacity',
data: [75.9,83.3,87.4,95.4,104,109,115,120,125]
},{
name: 'Mid Res Single Image (275KB) with Opacity',
data: [82.6,98.9,112,128,139,151,162,173,184]
},{
name: 'Mid Res Single Image (275KB) without Opacity',
data: [69.8,82.5,86.5,90.5,95.3,101,106,111,115]
},{
name: 'High Res Single Image (1.2MB) with Opacity',
data: [81.9,111,128,146,164,181,199,217,235]
},{
name: 'High Res Single Image (1.2MB) without Opacity',
data: [73.2,83.8,98.9,106,117,129,136,144,156]
}]
});