vegalite({
data: {values: aapl},
mark: {type: "line", interpolate: "step"},
width: width,
height: 360,
autosize: "fit",
title: {
text: "The Price of Apple",
fontSize: 24,
fontWeight: "normal",
anchor: "start"
},
encoding: {
x: {
field: "date",
type: "temporal",
axis: {tickCount: 5, title: "Year", format: "%Y", titleFontSize: 20, labelFontSize: 20}
}
},
"layer": [
{
"mark": {"type": "line", "tooltip": {"field": "close", "type": "quantitative"}},
"encoding": {
y: {
field: "close",
type: "quantitative",
axis: {format: "$f", title: "AAPL Close", titleFontSize: 20, labelFontSize: 20}
}
}
}
]
})