1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| option = { title: { text: 'Percentage of page walk time overhead caused by data TLB misses', subtext: 'GUPS RandomAccess benchmark' }, tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' } }, xAxis: { name: 'input-data \nsize', type: 'category', data: ['2^29', '2^30', '2^31', '2^32'], }, yAxis: { type: 'value', title: 'align' }, series: [ { name: "Percentage", data: [13.20, 19.50, 45.22,66.81], type: 'bar', label: { show: true, position: 'top' }, } ] };
|