How can I hide the positive contour labels covering the green area and only display the negative contour labels over the ocean areas? I am using QGIS 2.18.2. The contour file is a separate layer and when I enable labels I cannot hide the positive contours. Refer to the image below.
Asked
Active
Viewed 330 times
1 Answers
6
You can use the if statement to only show values which are negative, something like the following:
if("fieldName" < 0, "fieldName", '')
Example:
Joseph
- 75,746
- 7
- 171
- 282



