We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8623a2 commit 6ba2015Copy full SHA for 6ba2015
1 file changed
doc/gallery/examples/pie-chart.qmd
@@ -98,3 +98,18 @@ VISUALISE island AS fill FROM ggsql:penguins
98
PROJECT TO polar SETTING start => -90, end => 90
99
SCALE angle SETTING expand => 0
100
```
101
+
102
103
+### Faceting pie charts
104
105
+When faceting, you will typically want to pies to be whole, which requires the `SETTING free => 'angle'` specification.
106
107
+```{ggsql}
108
+VISUALISE island AS fill FROM ggsql:penguins
109
+ DRAW bar
110
+ PROJECT TO polar
111
+ FACET species SETTING free => 'angle'
112
+```
113
114
115
0 commit comments