.. This document is auto-generated by the altair-gallery extension. Do not modify directly. .. _gallery_multiple_marks: Multiple Marks ============== This example demonstrates creating a single chart with multiple markers representing the same data. .. altair-plot:: :code-below: import altair as alt from vega_datasets import data source = data.stocks() alt.Chart(source).mark_line(point=True).encode( x='date:T', y='price:Q', color='symbol:N' ) .. toctree:: :hidden: