const AXIS = ['xy', 'x', 'y'];
const MODE = ['nearest', 'point', 'x', 'y'];
let axisIndex = 0;
let modeIndex = 0;
Utils.srand(8);
const data = {
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [{
type: 'line',
label: 'Dataset 1',
borderColor: 'rgb(54, 162, 235)',
borderWidth: 2,
fill: false,
data: Utils.numbers({count: 7, min: 0, max: 100}),
}]
};