EffectScatterSeries.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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 createSeriesData from '../helper/createSeriesData.js';
  42. import SeriesModel from '../../model/Series.js';
  43. var EffectScatterSeriesModel =
  44. /** @class */
  45. function (_super) {
  46. __extends(EffectScatterSeriesModel, _super);
  47. function EffectScatterSeriesModel() {
  48. var _this = _super !== null && _super.apply(this, arguments) || this;
  49. _this.type = EffectScatterSeriesModel.type;
  50. _this.hasSymbolVisual = true;
  51. return _this;
  52. }
  53. EffectScatterSeriesModel.prototype.getInitialData = function (option, ecModel) {
  54. return createSeriesData(null, this, {
  55. useEncodeDefaulter: true
  56. });
  57. };
  58. EffectScatterSeriesModel.prototype.brushSelector = function (dataIndex, data, selectors) {
  59. return selectors.point(data.getItemLayout(dataIndex));
  60. };
  61. EffectScatterSeriesModel.type = 'series.effectScatter';
  62. EffectScatterSeriesModel.dependencies = ['grid', 'polar'];
  63. EffectScatterSeriesModel.defaultOption = {
  64. coordinateSystem: 'cartesian2d',
  65. // zlevel: 0,
  66. z: 2,
  67. legendHoverLink: true,
  68. effectType: 'ripple',
  69. progressive: 0,
  70. // When to show the effect, option: 'render'|'emphasis'
  71. showEffectOn: 'render',
  72. clip: true,
  73. // Ripple effect config
  74. rippleEffect: {
  75. period: 4,
  76. // Scale of ripple
  77. scale: 2.5,
  78. // Brush type can be fill or stroke
  79. brushType: 'fill',
  80. // Ripple number
  81. number: 3
  82. },
  83. universalTransition: {
  84. divideShape: 'clone'
  85. },
  86. // Cartesian coordinate system
  87. // xAxisIndex: 0,
  88. // yAxisIndex: 0,
  89. // Polar coordinate system
  90. // polarIndex: 0,
  91. // Geo coordinate system
  92. // geoIndex: 0,
  93. // symbol: null, // 图形类型
  94. symbolSize: 10 // 图形大小,半宽(半径)参数,当图形为方向或菱形则总宽度为symbolSize * 2
  95. // symbolRotate: null, // 图形旋转控制
  96. // itemStyle: {
  97. // opacity: 1
  98. // }
  99. };
  100. return EffectScatterSeriesModel;
  101. }(SeriesModel);
  102. export default EffectScatterSeriesModel;