series-dxi.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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_series_dxi_1 = require("./base/chart-series-dxi");
  28. var DxiSeriesComponent = (function (_super) {
  29. __extends(DxiSeriesComponent, _super);
  30. function DxiSeriesComponent(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(DxiSeriesComponent.prototype, "_optionPath", {
  37. get: function () {
  38. return 'series';
  39. },
  40. enumerable: true,
  41. configurable: true
  42. });
  43. DxiSeriesComponent.decorators = [
  44. { type: core_1.Component, args: [{
  45. selector: 'dxi-series',
  46. template: '',
  47. styles: [''],
  48. providers: [nested_option_1.NestedOptionHost],
  49. inputs: [
  50. 'aggregation',
  51. 'argumentField',
  52. 'axis',
  53. 'barOverlapGroup',
  54. 'barPadding',
  55. 'barWidth',
  56. 'border',
  57. 'closeValueField',
  58. 'color',
  59. 'cornerRadius',
  60. 'dashStyle',
  61. 'highValueField',
  62. 'hoverMode',
  63. 'hoverStyle',
  64. 'ignoreEmptyPoints',
  65. 'innerColor',
  66. 'label',
  67. 'lowValueField',
  68. 'maxLabelCount',
  69. 'minBarSize',
  70. 'name',
  71. 'opacity',
  72. 'openValueField',
  73. 'pane',
  74. 'point',
  75. 'rangeValue1Field',
  76. 'rangeValue2Field',
  77. 'reduction',
  78. 'selectionMode',
  79. 'selectionStyle',
  80. 'showInLegend',
  81. 'sizeField',
  82. 'stack',
  83. 'tag',
  84. 'tagField',
  85. 'type',
  86. 'valueErrorBar',
  87. 'valueField',
  88. 'visible',
  89. 'width',
  90. 'argumentType',
  91. 'minSegmentSize',
  92. 'smallValuesGrouping',
  93. 'closed'
  94. ]
  95. },] },
  96. ];
  97. /** @nocollapse */
  98. DxiSeriesComponent.ctorParameters = function () { return [
  99. { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.SkipSelf }, { type: core_1.Host },] },
  100. { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.Host },] },
  101. ]; };
  102. return DxiSeriesComponent;
  103. }(chart_series_dxi_1.DxiChartSeries));
  104. exports.DxiSeriesComponent = DxiSeriesComponent;
  105. var DxiSeriesModule = (function () {
  106. function DxiSeriesModule() {
  107. }
  108. DxiSeriesModule.decorators = [
  109. { type: core_1.NgModule, args: [{
  110. declarations: [
  111. DxiSeriesComponent
  112. ],
  113. exports: [
  114. DxiSeriesComponent
  115. ],
  116. },] },
  117. ];
  118. return DxiSeriesModule;
  119. }());
  120. exports.DxiSeriesModule = DxiSeriesModule;
  121. //# sourceMappingURL=series-dxi.js.map