Interface IAnalyticsModuleConfiguration

interface IAnalyticsModuleConfiguration {
    aggregateType?: "count" | "max" | "avg" | "sum" | "min";
    chartType?: "line" | "bar" | "table" | "pie" | "summary";
}

Properties

aggregateType?: "count" | "max" | "avg" | "sum" | "min"
chartType?: "line" | "bar" | "table" | "pie" | "summary"