Cloud
Облачный сервис для быстрого и эффективного анализа и визуализации данных для вашего бизнеса без необходимости создания своих приложений и программирования.
StiFunctions.AddFunction("MyCategory", "MySum",
"description", typeof(CustomFunction),
typeof(decimal), "Calculates a sum of the specified set of values.",
new[] { typeof(object) }, new[] { "values" }, new[] { "A set of values" });
this.Report = StiReport.CreateNewDashboard();StiFunctions.AddFunction registers the method with its category, name, return type and parameters. It then appears in the designer's function list and can be used in any dashboard expression.