@@ -6,7 +6,7 @@ callWithJQuery = (pivotModule) ->
6
6
# Plain browser env
7
7
else
8
8
pivotModule jQuery
9
-
9
+
10
10
callWithJQuery ($ ) ->
11
11
nf = $ .pivotUtilities .numberFormat
12
12
tpl = $ .pivotUtilities .aggregatorTemplates
@@ -15,7 +15,7 @@ callWithJQuery ($) ->
15
15
frFmtInt = nf (digitsAfterDecimal : 0 , thousandsSep : " " , decimalSep : " ," )
16
16
frFmtPct = nf (digitsAfterDecimal : 1 , scaler : 100 , suffix : " %" , thousandsSep : " " , decimalSep : " ," )
17
17
18
- $ .pivotUtilities .locales .nl =
18
+ $ .pivotUtilities .locales .nl =
19
19
localeStrings :
20
20
renderError : " Er is een fout opgetreden bij het renderen van de kruistabel."
21
21
computeError : " Er is een fout opgetreden bij het berekenen van de kruistabel."
@@ -28,7 +28,7 @@ callWithJQuery ($) ->
28
28
vs : " versus"
29
29
by : " per"
30
30
31
- aggregators :
31
+ aggregators :
32
32
" Aantal" : tpl .count (frFmtInt)
33
33
" Aantal unieke waarden" : tpl .countUnique (frFmtInt)
34
34
" Lijst unieke waarden" : tpl .listUnique (" , " )
@@ -37,6 +37,8 @@ callWithJQuery ($) ->
37
37
" Gemiddelde" : tpl .average (frFmt)
38
38
" Minimum" : tpl .min (frFmt)
39
39
" Maximum" : tpl .max (frFmt)
40
+ " Eerste" : tpl .first (frFmt)
41
+ " Laatste" : tpl .last (frFmt)
40
42
" Som over som" : tpl .sumOverSum (frFmt)
41
43
" 80% bovengrens" : tpl .sumOverSumBound80 (true , frFmt)
42
44
" 80% ondergrens" : tpl .sumOverSumBound80 (false , frFmt)
0 commit comments