Is there a way to ignore range values ​​when displayed in composer?

Is there a function in the Chart URL API that allows us to ignore values ​​that are inside (or outside) a certain range?

+4
source share
1 answer

I believe you can check removeAboveValue and removeBelowValue .

For example, to exclude values ​​below 2 and above 10:

 http://host/render&target=removeAboveValue(removeBelowValue(abc, 2), 10) 

Ignoring the values ​​within the range is a bit more complicated, but this can probably be achieved by summing the series in which the data was previously filtered (unchecked):

 http://host/render&target=sum(removeAboveValue(abc, 2), removeBelowValue(abc, 10)) 
+5
source

All Articles