stackedbar.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. "use strict";
  2. var __extends = (this && this.__extends) || (function () {
  3. var extendStatics = Object.setPrototypeOf ||
  4. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  5. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  6. return function (d, b) {
  7. extendStatics(d, b);
  8. function __() { this.constructor = d; }
  9. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  10. };
  11. })();
  12. /*!
  13. * devextreme-angular
  14. * Version: 19.1.16
  15. * Build date: Tue Oct 18 2022
  16. *
  17. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  18. *
  19. * This software may be modified and distributed under the terms
  20. * of the MIT license. See the LICENSE file in the root of the project for details.
  21. *
  22. * https://github.com/DevExpress/devextreme-angular
  23. */
  24. Object.defineProperty(exports, "__esModule", { value: true });
  25. var core_1 = require("@angular/core");
  26. var nested_option_1 = require("../../core/nested-option");
  27. var chart_common_series_settings_1 = require("./base/chart-common-series-settings");
  28. var DxoStackedbarComponent = (function (_super) {
  29. __extends(DxoStackedbarComponent, _super);
  30. function DxoStackedbarComponent(parentOptionHost, optionHost) {
  31. var _this = _super.call(this) || this;
  32. parentOptionHost.setNestedOption(_this);
  33. optionHost.setHost(_this, _this._fullOptionPath.bind(_this));
  34. return _this;
  35. }
  36. Object.defineProperty(DxoStackedbarComponent.prototype, "_optionPath", {
  37. get: function () {
  38. return 'stackedbar';
  39. },
  40. enumerable: true,
  41. configurable: true
  42. });
  43. DxoStackedbarComponent.decorators = [
  44. { type: core_1.Component, args: [{
  45. selector: 'dxo-stackedbar',
  46. template: '',
  47. styles: [''],
  48. providers: [nested_option_1.NestedOptionHost],
  49. inputs: [
  50. 'aggregation',
  51. 'area',
  52. 'argumentField',
  53. 'axis',
  54. 'bar',
  55. 'barOverlapGroup',
  56. 'barPadding',
  57. 'barWidth',
  58. 'border',
  59. 'bubble',
  60. 'candlestick',
  61. 'closeValueField',
  62. 'color',
  63. 'cornerRadius',
  64. 'dashStyle',
  65. 'fullstackedarea',
  66. 'fullstackedbar',
  67. 'fullstackedline',
  68. 'fullstackedspline',
  69. 'fullstackedsplinearea',
  70. 'highValueField',
  71. 'hoverMode',
  72. 'hoverStyle',
  73. 'ignoreEmptyPoints',
  74. 'innerColor',
  75. 'label',
  76. 'line',
  77. 'lowValueField',
  78. 'maxLabelCount',
  79. 'minBarSize',
  80. 'opacity',
  81. 'openValueField',
  82. 'pane',
  83. 'point',
  84. 'rangearea',
  85. 'rangebar',
  86. 'rangeValue1Field',
  87. 'rangeValue2Field',
  88. 'reduction',
  89. 'scatter',
  90. 'selectionMode',
  91. 'selectionStyle',
  92. 'showInLegend',
  93. 'sizeField',
  94. 'spline',
  95. 'splinearea',
  96. 'stack',
  97. 'stackedarea',
  98. 'stackedbar',
  99. 'stackedline',
  100. 'stackedspline',
  101. 'stackedsplinearea',
  102. 'steparea',
  103. 'stepline',
  104. 'stock',
  105. 'tagField',
  106. 'type',
  107. 'valueErrorBar',
  108. 'valueField',
  109. 'visible',
  110. 'width',
  111. 'closed'
  112. ]
  113. },] },
  114. ];
  115. /** @nocollapse */
  116. DxoStackedbarComponent.ctorParameters = function () { return [
  117. { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.SkipSelf }, { type: core_1.Host },] },
  118. { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.Host },] },
  119. ]; };
  120. return DxoStackedbarComponent;
  121. }(chart_common_series_settings_1.DxoChartCommonSeriesSettings));
  122. exports.DxoStackedbarComponent = DxoStackedbarComponent;
  123. var DxoStackedbarModule = (function () {
  124. function DxoStackedbarModule() {
  125. }
  126. DxoStackedbarModule.decorators = [
  127. { type: core_1.NgModule, args: [{
  128. declarations: [
  129. DxoStackedbarComponent
  130. ],
  131. exports: [
  132. DxoStackedbarComponent
  133. ],
  134. },] },
  135. ];
  136. return DxoStackedbarModule;
  137. }());
  138. exports.DxoStackedbarModule = DxoStackedbarModule;
  139. //# sourceMappingURL=stackedbar.js.map