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