EffectScatterView.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. * AUTO-GENERATED FILE. DO NOT MODIFY.
  21. */
  22. /*
  23. * Licensed to the Apache Software Foundation (ASF) under one
  24. * or more contributor license agreements. See the NOTICE file
  25. * distributed with this work for additional information
  26. * regarding copyright ownership. The ASF licenses this file
  27. * to you under the Apache License, Version 2.0 (the
  28. * "License"); you may not use this file except in compliance
  29. * with the License. You may obtain a copy of the License at
  30. *
  31. * http://www.apache.org/licenses/LICENSE-2.0
  32. *
  33. * Unless required by applicable law or agreed to in writing,
  34. * software distributed under the License is distributed on an
  35. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  36. * KIND, either express or implied. See the License for the
  37. * specific language governing permissions and limitations
  38. * under the License.
  39. */
  40. import { __extends } from "tslib";
  41. import SymbolDraw from '../helper/SymbolDraw.js';
  42. import EffectSymbol from '../helper/EffectSymbol.js';
  43. import * as matrix from 'zrender/lib/core/matrix.js';
  44. import pointsLayout from '../../layout/points.js';
  45. import ChartView from '../../view/Chart.js';
  46. var EffectScatterView =
  47. /** @class */
  48. function (_super) {
  49. __extends(EffectScatterView, _super);
  50. function EffectScatterView() {
  51. var _this = _super !== null && _super.apply(this, arguments) || this;
  52. _this.type = EffectScatterView.type;
  53. return _this;
  54. }
  55. EffectScatterView.prototype.init = function () {
  56. this._symbolDraw = new SymbolDraw(EffectSymbol);
  57. };
  58. EffectScatterView.prototype.render = function (seriesModel, ecModel, api) {
  59. var data = seriesModel.getData();
  60. var effectSymbolDraw = this._symbolDraw;
  61. effectSymbolDraw.updateData(data, {
  62. clipShape: this._getClipShape(seriesModel)
  63. });
  64. this.group.add(effectSymbolDraw.group);
  65. };
  66. EffectScatterView.prototype._getClipShape = function (seriesModel) {
  67. var coordSys = seriesModel.coordinateSystem;
  68. var clipArea = coordSys && coordSys.getArea && coordSys.getArea();
  69. return seriesModel.get('clip', true) ? clipArea : null;
  70. };
  71. EffectScatterView.prototype.updateTransform = function (seriesModel, ecModel, api) {
  72. var data = seriesModel.getData();
  73. this.group.dirty();
  74. var res = pointsLayout('').reset(seriesModel, ecModel, api);
  75. if (res.progress) {
  76. res.progress({
  77. start: 0,
  78. end: data.count(),
  79. count: data.count()
  80. }, data);
  81. }
  82. this._symbolDraw.updateLayout();
  83. };
  84. EffectScatterView.prototype._updateGroupTransform = function (seriesModel) {
  85. var coordSys = seriesModel.coordinateSystem;
  86. if (coordSys && coordSys.getRoamTransform) {
  87. this.group.transform = matrix.clone(coordSys.getRoamTransform());
  88. this.group.decomposeTransform();
  89. }
  90. };
  91. EffectScatterView.prototype.remove = function (ecModel, api) {
  92. this._symbolDraw && this._symbolDraw.remove(true);
  93. };
  94. EffectScatterView.type = 'effectScatter';
  95. return EffectScatterView;
  96. }(ChartView);
  97. export default EffectScatterView;