Multiple MarksΒΆ

This example demonstrates creating a single chart with multiple markers representing the same data.

import altair as alt
from vega_datasets import data

stocks = data.stocks()

alt.Chart(stocks).mark_line(point=True).encode(
    x='date:T',
    y='price:Q',
    color='symbol:N'
)