I'm trying to label features using the geometry generator (QGIS 3.8). I used the following expression to build a simple circle :
buffer(centroid($geometry), 500)
In Placement i used Using Perimeter (curved)
The labeling is working pretty good except some of my features label are written clockwise and some counterclockwise. How could i control this rendering ?
Furthermore i would like the mid-point of my labeling string to be at the most northern point of the circle ...
How could i achieve that ?


bufferexpression? Do you add a geometry generator symbol layer? – csk Oct 14 '19 at 15:54buffer(centroid($geometry),500)? how would my text be bended in that case ? What kind of units should be used in such expression ? – Snaileater Oct 15 '19 at 18:52bufferfunction and units stay same so you can use500. But instead of yourscentroid($geometry)it usegeom_from_wkt()to create tiny triangle around centroid angled that way that the label is then rendered on top. – Oto Kaláb Oct 15 '19 at 19:04geom_from_wkt()part in symbology geometry generator, which gnerate the polygon as symbol, so you can see what is happening in the background when you use the expression for labels. – Oto Kaláb Oct 17 '19 at 09:01