-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,26 @@ | ||
import Playground from '@site/src/components/PlaygroundV3'; | ||
|
||
# Pie chart | ||
|
||
<!-- introduction start --> | ||
Pie charts are a popular and visually appealing way to represent data. They are circular graphs divided into slices, where each slice represents a proportion of the whole. | ||
<!-- introduction end --> | ||
This type of chart is particularly useful for displaying categorical data and showing the relative sizes of different categories. By providing a clear and immediate visual comparison, pie charts make it easy to understand the distribution and composition of data at a glance. | ||
## Examples | ||
|
||
### Donut chart | ||
|
||
### Pie chart | ||
Pie charts are a straightforward and effective way to visualize data proportions within a whole. | ||
<Playground | ||
height="40rem" | ||
name="echarts-circle" | ||
name="echarts-pie" | ||
noMargin | ||
examplesByName> | ||
</Playground> | ||
|
||
### Pie chart | ||
|
||
### Donut chart | ||
Donut charts are a variation of pie charts. They feature a central hole, giving them a distinctive “donut” shape. This design not only makes them visually appealing but also allows for additional information or labels to be placed in the center. | ||
<Playground | ||
height="40rem" | ||
name="echarts-pie" | ||
name="echarts-circle" | ||
noMargin | ||
examplesByName> | ||
</Playground> |