Applies to: ✅Microsoft Fabric✅Azure Data Explorer
누적 영역형 차트 시각적 개체는 연속 관계를 보여 줍니다. This visual is similar to the Area chart, but shows the area under each element of a series. 쿼리의 첫 번째 열은 숫자여야 하며 x축으로 사용됩니다. 다른 숫자 열은 y축입니다. 꺾은선형 차트와 달리 영역형 차트도 볼륨을 시각적으로 표시합니다. 영역형 차트는 다양한 데이터 세트 간의 변화를 나타내는 데 적합합니다.
Note
This visualization can only be used in the context of the render operator.
Syntax
T|
render
stackedareachart
[with
(
propertyName=
propertyValue [,
...])
]
Learn more about syntax conventions.
Supported parameters
Name | Type | Required | Description |
---|---|---|---|
T | string |
✔️ | 입력 테이블 이름입니다. |
propertyName, propertyValue | string |
키-값 속성 쌍의 쉼표로 구분된 목록입니다. See supported properties. |
Supported properties
모든 속성은 선택 사항입니다.
PropertyName | PropertyValue |
---|---|
accumulate |
각 측정값의 값이 모든 선행 문서에 추가되는지 여부입니다. (true 또는 false ) |
legend |
범례 표시 여부(visible 또는 hidden )입니다. |
series |
레코드가 속한 계열을 정의하는 결합된 레코드당 값이 있는 열의 쉼표로 구분된 목록입니다. |
ymin |
Y축에 표시할 최소값입니다. |
ymax |
Y축에 표시할 최대값입니다. |
title |
시각화의 제목(형식 string )입니다. |
xaxis |
x축의 크기를 조정하는 방법입니다(linear 또는 log ). |
xcolumn |
x축에 사용되는 결과의 열입니다. |
xtitle |
x축의 제목입니다(string 형식). |
yaxis |
y축의 크기를 조정하는 방법입니다(linear 또는 log ). |
ycolumns |
x 열 값당 제공된 값으로 구성된 쉼표로 구분된 열 목록입니다. |
ytitle |
y축의 제목입니다(string 형식). |
Example
다음 쿼리는 nyc_taxi
테이블의 데이터를 승객 수별로 요약하고 누적 영역형 차트의 데이터를 시각화합니다. x축은 2일 간격으로 승차 시간을 표시하며 누적 영역은 승객 수가 다릅니다.
The examples in this article use publicly available tables in the help cluster, such as the
StormEvents
table in the Samples database.
The examples in this article use publicly available tables, such as the
Weather
table in the Weather analytics sample gallery. 작업 영역의 테이블과 일치하도록 예제 쿼리에서 테이블 이름을 수정해야 할 수 있습니다.
nyc_taxi
| summarize count() by passenger_count, bin(pickup_datetime, 2d)
| render stackedareachart with (xcolumn=pickup_datetime, series=passenger_count)
Output