Step Line Plot — Altair

A step function plot where values remain constant until the next change, creating horizontal-then-vertical transitions. This visualization emphasizes discrete changes rather than interpolated values.

Step Line Plot rendered with Altair

Renders

Python source (Altair)

""" anyplot.ai
line-stepwise: Step Line Plot
Library: altair 6.1.0 | Python 3.13.13
Quality: 91/100 | Updated: 2026-05-13
"""

import os
import sys


# Workaround for import conflict: remove script directory from path
script_dir = os.path.dirname(os.path.abspath(__file__))
if script_dir in sys.path:
    sys.path.remove(script_dir)

import altair as alt
import numpy as np
import pandas as pd


# Theme tokens
THEME = os.getenv("ANYPLOT_THEME", "light")
PAGE_BG = "#FAF8F1" if THEME == "light" else "#1A1A17"
ELEVATED_BG = "#FFFDF6" if THEME == "light" else "#242420"
INK = "#1A1A17" if THEME == "light" else "#F0EFE8"
INK_SOFT = "#4A4A44" if THEME == "light" else "#B8B7B0"
BRAND = "#009E73"

# Data - Discrete price changes showing step behavior (both increases and decreases)
np.random.seed(42)
days = np.arange(0, 25)
# Price values that step discretely, with varied pattern
base_price = 100
price_changes = [0, 0, 5, 5, 0, -3, -3, -3, 8, 8, 8, 2, 2, -2, -2, -2, 6, 6, 3, 3, 3, 1, 1, 1, 0]
prices = base_price + np.cumsum(price_changes)

df = pd.DataFrame({"Day": days, "Price ($)": prices})

# Create step line chart using interpolate='step-after'
chart = (
    alt.Chart(df)
    .mark_line(interpolate="step-after", strokeWidth=4, color=BRAND)
    .encode(
        x=alt.X("Day:Q", title="Day", axis=alt.Axis(labelFontSize=18, titleFontSize=22)),
        y=alt.Y(
            "Price ($):Q",
            title="Price ($)",
            scale=alt.Scale(zero=False),
            axis=alt.Axis(labelFontSize=18, titleFontSize=22),
        ),
        tooltip=["Day", "Price ($)"],
    )
    .properties(
        width=1600,
        height=900,
        background=PAGE_BG,
        title=alt.Title("line-stepwise · altair · anyplot.ai", fontSize=28, anchor="middle"),
    )
    .configure_axis(
        domainColor=INK_SOFT,
        tickColor=INK_SOFT,
        gridColor=INK,
        gridOpacity=0.15,
        labelColor=INK_SOFT,
        titleColor=INK,
        grid=True,
        gridDash=[4, 4],
    )
    .configure_view(strokeWidth=0, fill=PAGE_BG)
    .configure_title(color=INK)
)

# Save as PNG (1600 × 900 * 3 = 4800 × 2700 px)
chart.save(f"plot-{THEME}.png", scale_factor=3.0)

# Save as HTML for interactivity
chart.save(f"plot-{THEME}.html")

Retrieve this implementation

Runnable source as JSON, for any HTTP client: https://api.anyplot.ai/specs/line-stepwise/altair/code. Any spec id and library id listed in llms-full.txt fit the same URL shape; every URL below is complete and callable.

{
  "spec_id": "line-stepwise",
  "language": "python",
  "library": "altair",
  "page": "https://anyplot.ai/line-stepwise/python/altair",
  "hub": "https://anyplot.ai/line-stepwise",
  "code_json": "https://api.anyplot.ai/specs/line-stepwise/altair/code",
  "spec_json": "https://api.anyplot.ai/specs/line-stepwise",
  "render_light_png": "https://storage.googleapis.com/anyplot-images/plots/line-stepwise/python/altair/plot-light.png",
  "render_dark_png": "https://storage.googleapis.com/anyplot-images/plots/line-stepwise/python/altair/plot-dark.png",
  "interactive_light_html": "https://storage.googleapis.com/anyplot-images/plots/line-stepwise/python/altair/plot-light.html",
  "interactive_dark_html": "https://storage.googleapis.com/anyplot-images/plots/line-stepwise/python/altair/plot-dark.html",
  "quality_score": 91.0,
  "license": "MIT",
  "guide": "https://anyplot.ai/llms.txt"
}

Part of Step Line Plot on anyplot.ai.

Other implementations