const annotation2 = {
type: 'line',
borderColor: 'rgba(102,102,102,0.5)',
borderDash: [6, 6],
borderDashOffset: 0,
borderWidth: 3,
label: {
enabled: true,
backgroundColor: 'rgba(102,102,102,0.5)',
color: 'black',
content: (ctx) => (average(ctx) + standardDeviation(ctx)).toFixed(2),
position: 'start',
rotation: -90,
yAdjust: -28
},
scaleID: 'y',
value: (ctx) => average(ctx) + standardDeviation(ctx)
};