Card visualization
This article describes the card visualization.
The card visual only shows one element. If there are multiple columns and rows in the output, the first result record is treated as set of scalar values and shows as a card.
Syntax
T |
render
card
[with
(
propertyName =
propertyValue [,
…])
]
Parameters
Name | Type | Required | Description |
---|---|---|---|
T | string | ✔️ | Input table name. |
propertyName, propertyValue | string | A comma-separated list of key-value property pairs. See supported properties. |
Supported properties
All properties are optional.
PropertyName | PropertyValue |
---|---|
title | The title of the visualization (of type string ). |
Example
This query provides a count of flood events in Virginia and displays the result in a card format.
StormEvents
| where State=="VIRGINIA" and EventType=="Flood"
| count
| render card with (title="Floods in Virginia")
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.