Applies to: ✅Microsoft Fabric✅Azure Data Explorer
カード ビジュアルには、1 つの要素のみが表示されます。 出力に複数の列と行がある場合、最初の結果レコードはスカラー値のセットとして扱われ、カードとして表示されます。
Note
This visualization can only be used in the context of the render operator.
Syntax
T|rendercard [with(propertyName=propertyValue [, ...])]
Learn more about syntax conventions.
Parameters
| Name | タイプ | Required | Description |
|---|---|---|---|
| T | string |
✔️ | 入力テーブル名。 |
| propertyName, propertyValue | string |
キーと値のプロパティのペアのコンマ区切りのリスト。 See supported properties. |
Supported properties
すべてのプロパティは省略可能です。
| PropertyName | PropertyValue |
|---|---|
title |
視覚化のタイトル (string 型)。 |
Example
このクエリは、バージニア州の洪水イベントの数を提供し、結果をカード形式で表示します。
The examples in this article use publicly available tables in the help cluster, such as the
StormEventstable in the Samples database.
The examples in this article use publicly available tables, such as the
Weathertable in the Weather analytics sample gallery. ワークスペース内のテーブルと一致するように、クエリ例のテーブル名を変更する必要がある場合があります。
StormEvents
| where State=="VIRGINIA" and EventType=="Flood"
| count
| render card with (title="Floods in Virginia")