Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
var myFunc = function (value) {
return value.toUpperCase();
};
Stimulsoft.Report.Dictionary.StiFunctions.addFunction(
'MyCategory', 'MyFunction', 'MyFunction',
'Returns a string converted to uppercase', '', String,
'String in the uppercase', [String], ['value'], ['The text string'], myFunc);StiFunctions.addFunction registers the function with its category, name, description, return type and parameter metadata, plus the JavaScript implementation. It then appears in the designer's function list and can be used in any expression, e.g. {MyFunction("hello")}.