123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- /**
- * Licensed Materials - Property of IBM
- * IBM Business Analytics (C) Copyright IBM Corp. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class DataBehindTheVisAPI
- * @hideconstructor
- * @classdesc
- */
- define([], function () {
- var DataBehindTheVisAPI = function () {
- function DataBehindTheVisAPI() {
- _classCallCheck(this, DataBehindTheVisAPI);
- }
- /**
- * @public
- * @function DataBehindTheVisAPI#getData
- * @description Get the data behind the vis
- * @param {Boolean} doAggregate boolean value to indicate whether export data is aggregated or disaggregated, Default = true
- * @return {Object} dataBehindTheVis data object
- */
- DataBehindTheVisAPI.prototype.getData = function getData() /*doAggregate*/{};
- /**
- * @public
- * @function DataBehindTheVisAPI#export
- * @description Exports the vis data to CSV format
- * @param {Boolean} doAggregate boolean value to indicate whether export data is aggregated or disaggregated, Default = true
- * @return {Object} dataBehindTheVis data object
- * @example
- */
- DataBehindTheVisAPI.prototype.export = function _export() /*doAggregate*/{};
- return DataBehindTheVisAPI;
- }();
- return DataBehindTheVisAPI;
- });
- //# sourceMappingURL=DataBehindTheVisAPI.js.map
|