gauge-indicator.js 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 nested_option_1 = require("../../../core/nested-option");
  26. var DxoGaugeIndicator = (function (_super) {
  27. __extends(DxoGaugeIndicator, _super);
  28. function DxoGaugeIndicator() {
  29. return _super !== null && _super.apply(this, arguments) || this;
  30. }
  31. Object.defineProperty(DxoGaugeIndicator.prototype, "arrowLength", {
  32. get: function () {
  33. return this._getOption('arrowLength');
  34. },
  35. set: function (value) {
  36. this._setOption('arrowLength', value);
  37. },
  38. enumerable: true,
  39. configurable: true
  40. });
  41. Object.defineProperty(DxoGaugeIndicator.prototype, "backgroundColor", {
  42. get: function () {
  43. return this._getOption('backgroundColor');
  44. },
  45. set: function (value) {
  46. this._setOption('backgroundColor', value);
  47. },
  48. enumerable: true,
  49. configurable: true
  50. });
  51. Object.defineProperty(DxoGaugeIndicator.prototype, "baseValue", {
  52. get: function () {
  53. return this._getOption('baseValue');
  54. },
  55. set: function (value) {
  56. this._setOption('baseValue', value);
  57. },
  58. enumerable: true,
  59. configurable: true
  60. });
  61. Object.defineProperty(DxoGaugeIndicator.prototype, "beginAdaptingAtRadius", {
  62. get: function () {
  63. return this._getOption('beginAdaptingAtRadius');
  64. },
  65. set: function (value) {
  66. this._setOption('beginAdaptingAtRadius', value);
  67. },
  68. enumerable: true,
  69. configurable: true
  70. });
  71. Object.defineProperty(DxoGaugeIndicator.prototype, "color", {
  72. get: function () {
  73. return this._getOption('color');
  74. },
  75. set: function (value) {
  76. this._setOption('color', value);
  77. },
  78. enumerable: true,
  79. configurable: true
  80. });
  81. Object.defineProperty(DxoGaugeIndicator.prototype, "horizontalOrientation", {
  82. get: function () {
  83. return this._getOption('horizontalOrientation');
  84. },
  85. set: function (value) {
  86. this._setOption('horizontalOrientation', value);
  87. },
  88. enumerable: true,
  89. configurable: true
  90. });
  91. Object.defineProperty(DxoGaugeIndicator.prototype, "indentFromCenter", {
  92. get: function () {
  93. return this._getOption('indentFromCenter');
  94. },
  95. set: function (value) {
  96. this._setOption('indentFromCenter', value);
  97. },
  98. enumerable: true,
  99. configurable: true
  100. });
  101. Object.defineProperty(DxoGaugeIndicator.prototype, "length", {
  102. get: function () {
  103. return this._getOption('length');
  104. },
  105. set: function (value) {
  106. this._setOption('length', value);
  107. },
  108. enumerable: true,
  109. configurable: true
  110. });
  111. Object.defineProperty(DxoGaugeIndicator.prototype, "offset", {
  112. get: function () {
  113. return this._getOption('offset');
  114. },
  115. set: function (value) {
  116. this._setOption('offset', value);
  117. },
  118. enumerable: true,
  119. configurable: true
  120. });
  121. Object.defineProperty(DxoGaugeIndicator.prototype, "palette", {
  122. get: function () {
  123. return this._getOption('palette');
  124. },
  125. set: function (value) {
  126. this._setOption('palette', value);
  127. },
  128. enumerable: true,
  129. configurable: true
  130. });
  131. Object.defineProperty(DxoGaugeIndicator.prototype, "secondColor", {
  132. get: function () {
  133. return this._getOption('secondColor');
  134. },
  135. set: function (value) {
  136. this._setOption('secondColor', value);
  137. },
  138. enumerable: true,
  139. configurable: true
  140. });
  141. Object.defineProperty(DxoGaugeIndicator.prototype, "secondFraction", {
  142. get: function () {
  143. return this._getOption('secondFraction');
  144. },
  145. set: function (value) {
  146. this._setOption('secondFraction', value);
  147. },
  148. enumerable: true,
  149. configurable: true
  150. });
  151. Object.defineProperty(DxoGaugeIndicator.prototype, "size", {
  152. get: function () {
  153. return this._getOption('size');
  154. },
  155. set: function (value) {
  156. this._setOption('size', value);
  157. },
  158. enumerable: true,
  159. configurable: true
  160. });
  161. Object.defineProperty(DxoGaugeIndicator.prototype, "spindleGapSize", {
  162. get: function () {
  163. return this._getOption('spindleGapSize');
  164. },
  165. set: function (value) {
  166. this._setOption('spindleGapSize', value);
  167. },
  168. enumerable: true,
  169. configurable: true
  170. });
  171. Object.defineProperty(DxoGaugeIndicator.prototype, "spindleSize", {
  172. get: function () {
  173. return this._getOption('spindleSize');
  174. },
  175. set: function (value) {
  176. this._setOption('spindleSize', value);
  177. },
  178. enumerable: true,
  179. configurable: true
  180. });
  181. Object.defineProperty(DxoGaugeIndicator.prototype, "text", {
  182. get: function () {
  183. return this._getOption('text');
  184. },
  185. set: function (value) {
  186. this._setOption('text', value);
  187. },
  188. enumerable: true,
  189. configurable: true
  190. });
  191. Object.defineProperty(DxoGaugeIndicator.prototype, "type", {
  192. get: function () {
  193. return this._getOption('type');
  194. },
  195. set: function (value) {
  196. this._setOption('type', value);
  197. },
  198. enumerable: true,
  199. configurable: true
  200. });
  201. Object.defineProperty(DxoGaugeIndicator.prototype, "verticalOrientation", {
  202. get: function () {
  203. return this._getOption('verticalOrientation');
  204. },
  205. set: function (value) {
  206. this._setOption('verticalOrientation', value);
  207. },
  208. enumerable: true,
  209. configurable: true
  210. });
  211. Object.defineProperty(DxoGaugeIndicator.prototype, "width", {
  212. get: function () {
  213. return this._getOption('width');
  214. },
  215. set: function (value) {
  216. this._setOption('width', value);
  217. },
  218. enumerable: true,
  219. configurable: true
  220. });
  221. return DxoGaugeIndicator;
  222. }(nested_option_1.NestedOption));
  223. exports.DxoGaugeIndicator = DxoGaugeIndicator;
  224. //# sourceMappingURL=gauge-indicator.js.map