> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/showcase/visualizations/data-readout",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Data readout

> Build a sparkline with descriptive text using Markdown visualization in Omni, referencing live query values in the results set.

The code for this example can be used in the Markdown visualization to create a sparkline visualization with a description. The description uses  to reference values in the results set.

<img src="https://mintcdn.com/omni-e7402367/aZ84MHc8H0bDix_i/images/docs/visualization-and-dashboards/visualization-types/markdown/examples/assets/images/data-readout-7521f0feb1be33580006933fc4a31b3a.png?fit=max&auto=format&n=aZ84MHc8H0bDix_i&q=85&s=e73c2cd8dcfe41226124000f7a4f121c" alt="" width="864" height="382" data-path="images/docs/visualization-and-dashboards/visualization-types/markdown/examples/assets/images/data-readout-7521f0feb1be33580006933fc4a31b3a.png" />

## Example code

```html wrap theme={null}
In the past 12 months, Acme Corp has had **{{result._totals._first.order_items.order_count.value}}** orders made by **{{result._totals._first.users.count.value}}** users, resulting in **{{result._totals._first.order_items.sale_price_sum.value}}** total revenue.<br><br><Sparkline field="order_items.order_count" color="#ED6C91" height=70% width=100% reverse=true></Sparkline>
```
