Name

global.ReportUtil

Description

Filtering supported report types.

Script

var ReportUtil = Class.create();
ReportUtil.prototype = {
  initialize: function() {
  },
  
  selectSupportedReport: function() {

  	validReportsTypes = ["type=single_score", "line", "step_line", "area", "spline", "bar", "horizontal bar", "donut"];

  	if (current.type == "report") {
  		validReportTypes.join("^ORtype=");
  		return validReportTypes;
  	}
  	else
  		return "";
  },

  type: 'ReportUtil'
};

Sys ID

5a76aa79b751001096aa25efce11a926

Offical Documentation

Official Docs: