_chart = (
    alt.Chart(table)
    .mark_line(point={"filled": False, "fill": "white"})
    .encode(
        x=alt.X("date_col", type="temporal"),
        y=alt.Y("count()", type="quantitative"),
    )
    .properties(width="container")
)
_chart