Added the 'stacked' and 'lowestCurrent' functions

This commit is contained in:
Lucian Grosu 2014-02-25 12:21:56 +01:00
parent 4b75d67732
commit 4b0cd0776d

View File

@ -76,6 +76,13 @@ function (_) {
defaultParams: ['', '']
});
addFuncDef({
name: "stacked",
category: categories.Special,
params: [ { name: "stack", type: 'string' } ],
defaultParams: ['stacked']
});
addFuncDef({
name: "groupByNode",
category: categories.Special,
@ -213,6 +220,13 @@ function (_) {
defaultParams: [5]
});
addFuncDef({
name: 'lowestCurrent',
category: categories.Filter,
params: [ { name: "count", type: "int" } ],
defaultParams: [5]
});
addFuncDef({
name: 'movingAverage',
category: categories.Filter,