vegalite({
width: 900,
height: 400,
data: {
url: "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_month.csv"
},
mark: "circle",
encoding: {
x: {
field: "time",
type: "temporal",
axis: {
title: null,
ticks: false,
labelAlign: "left",
labelExpr: "[timeFormat(datum.value, '%d') !== '01' ? timeFormat(datum.value, '%d') : timeFormat(datum.value, '\\n %B')]",
labelPadding: {
condition: {
test: {field: "value", timeUnit: "date", equal: 1}, value: 30},
value: 10
}
}
},
y: {
field: "mag",
type: "quantitative"
}
}
})