Pie layered chart
Overview
The layered pie chart is a pie chart with concentric layers to show successive levels of data.
What data do I need for this widget?
The option to create this chart will be disabled unless your query contains at least one column with numeric values. Furthermore, to show meaningful content on the chart, you must group your data.
Creating a pie layered chart
Working with pie layered charts
Hover over a segment on the chart to see the values of the assigned fields and the percentage of the total they represent.
Click on a segment to analyze it in detail, thus hiding all internal layers. A new version of the chart is generated consisting of the chosen segment and the corresponding outer-layer segments. Click the inner circle to show the full chart again.
Query example
You can recreate the example shown in the picture above with the data from the following query and mapping the fields as follows:
Query | Required field | Column added |
---|---|---|
from demo.ecommerce.data
group every 5m by statusCode, bytesTransferred
every 5m | Signals | statusCode |
Values | bytesTransferred |
In case you want another example with more than one argument to add, here is another query to create it:
Query | Required field | Column added |
---|---|---|
from demo.ecommerce.data
group every 5m by method, statusCode, bytesTransferred
every 5m | Signals(1) | method |
Signals(2) | statusCode | |
Value | bytesTransferred |