/*
Data fetched from server as JSON String with structure:
{
"area": "area-label",
"years": ["year-1-label", "year-2-label", ...],
"crimesByCategory": {
"category-1-label": [year-1-data, year-2-data, ...],
"category-2-label": [year-1-data, year-2-data, ...],
...
}
}
Data supplied to graph module as Javascript object with structure:
{
yearLabels: ['year-1-label', 'year-2-label', ...],
data: [year-1-data, year-2-data, ...],
}
*/
import * as scrawl from '../../source/scrawl.js';