UNPKG

prodap-chatbot-domain

Version:

Classes utilizadas na resposta de todas as Intents do Assistente Virtual

16 lines 533 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const ChartAbstract_1 = require("./ChartAbstract"); const ChartTypes_1 = require("./ChartTypes"); class StackedBarChart extends ChartAbstract_1.default { constructor(chartProps) { super(chartProps, ChartTypes_1.default.STACKED_BAR_CHART, ''); this.data = []; } addData(rows) { this.data = this.data.concat(rows); return this; } } exports.default = StackedBarChart; //# sourceMappingURL=StackedBarChart.js.map