Frame with ggplot style
A frame with a light gray fill and white grid lines, similar to ggplot2 style.
<Plot inset={10}>
<Frame fill="currentColor" opacity={0.1} />
<GridX
stroke="var(--svelteplot-bg)"
strokeOpacity={1} />
<GridY
stroke="var(--svelteplot-bg)"
strokeOpacity={1} />
<Line data={aapl} x="Date" y="Close" />
</Plot>