{ "cells": [ { "cell_type": "markdown", "id": "cec41580", "metadata": { "tags": [ "nbprint:section:covermatter" ] }, "source": [ "# Sales Dashboard\n", "## April 2026" ] }, { "cell_type": "markdown", "id": "d3d59322", "metadata": {}, "source": [ "# Overview\n", "\n", "Key metrics and regional breakdown." ] }, { "cell_type": "markdown", "id": "e740eca2", "metadata": { "tags": [ "chart-heading" ] }, "source": [ "## North America" ] }, { "cell_type": "code", "id": "caba618f", "execution_count": null, "metadata": { "tags": [ "chart" ] }, "outputs": [], "source": [ "# A placeholder 'chart' cell.\n", "from IPython.display import Markdown, display\n", "display(Markdown(\"**North America: $420M**\"))" ] }, { "cell_type": "markdown", "id": "7c7714d1", "metadata": { "tags": [ "chart-heading" ] }, "source": [ "## Europe" ] }, { "cell_type": "code", "id": "f3a15d1e", "execution_count": null, "metadata": { "tags": [ "chart" ] }, "outputs": [], "source": [ "from IPython.display import Markdown, display\n", "display(Markdown(\"**Europe: $310M**\"))" ] }, { "cell_type": "markdown", "id": "892a88e5", "metadata": {}, "source": [ "# Conclusion\n", "\n", "Growth remained strong across both regions." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.12" }, "nbprint": { "overlays": [ { "match": { "tag": "chart-heading" }, "css": ":scope { color: #0366d6; border-bottom: 1px solid #e1e4e8; }" }, { "match": { "tag": "chart" }, "style": { "border": { "bottom": { "width": 2, "style": "solid", "color": "#333" } } } }, { "match": { "section": "covermatter" }, "css": ":scope { text-align: center; margin-top: 25%; }" } ], "layout_overlays": [ { "match": { "tag": "chart" }, "layout": "row", "sizes": [ 1, 1 ] } ] } }, "nbformat": 4, "nbformat_minor": 5 }