const annotation1 = {
type: 'box',
backgroundColor: 'rgba(0,150,0,0.02)',
borderColor: 'rgba(0,150,0,0.2)',
borderRadius: 4,
borderWidth: 1,
xMax: (ctx) => max(ctx, 0, 'x') + 2,
xMin: (ctx) => min(ctx, 0, 'x') - 2,
yMax: (ctx) => max(ctx, 0, 'y') + 2,
yMin: (ctx) => min(ctx, 0, 'y') - 2
};