sankey.js 764 B

12345678910111213141516171819
  1. /**
  2. * DevExtreme (viz/sankey.js)
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
  8. */
  9. "use strict";
  10. var dxSankey = require("./sankey/sankey");
  11. var setTooltipCustomOptions = require("./sankey/tooltip").setTooltipCustomOptions;
  12. dxSankey.addPlugin(require("./core/export").plugin);
  13. dxSankey.addPlugin(require("./core/title").plugin);
  14. dxSankey.addPlugin(require("./sankey/tracker").plugin);
  15. dxSankey.addPlugin(require("./core/loading_indicator").plugin);
  16. dxSankey.addPlugin(require("./core/tooltip").plugin);
  17. setTooltipCustomOptions(dxSankey);
  18. module.exports = dxSankey;
  19. module.exports.default = module.exports;