installSimple.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 ComponentView from '../../view/Component.js';
  42. import GridModel from '../../coord/cartesian/GridModel.js';
  43. import { Rect } from '../../util/graphic.js';
  44. import { defaults } from 'zrender/lib/core/util.js';
  45. import { CartesianAxisModel } from '../../coord/cartesian/AxisModel.js';
  46. import axisModelCreator from '../../coord/axisModelCreator.js';
  47. import Grid from '../../coord/cartesian/Grid.js';
  48. import { CartesianXAxisView, CartesianYAxisView } from '../axis/CartesianAxisView.js'; // Grid view
  49. var GridView =
  50. /** @class */
  51. function (_super) {
  52. __extends(GridView, _super);
  53. function GridView() {
  54. var _this = _super !== null && _super.apply(this, arguments) || this;
  55. _this.type = 'grid';
  56. return _this;
  57. }
  58. GridView.prototype.render = function (gridModel, ecModel) {
  59. this.group.removeAll();
  60. if (gridModel.get('show')) {
  61. this.group.add(new Rect({
  62. shape: gridModel.coordinateSystem.getRect(),
  63. style: defaults({
  64. fill: gridModel.get('backgroundColor')
  65. }, gridModel.getItemStyle()),
  66. silent: true,
  67. z2: -1
  68. }));
  69. }
  70. };
  71. GridView.type = 'grid';
  72. return GridView;
  73. }(ComponentView);
  74. var extraOption = {
  75. // gridIndex: 0,
  76. // gridId: '',
  77. offset: 0
  78. };
  79. export function install(registers) {
  80. registers.registerComponentView(GridView);
  81. registers.registerComponentModel(GridModel);
  82. registers.registerCoordinateSystem('cartesian2d', Grid);
  83. axisModelCreator(registers, 'x', CartesianAxisModel, extraOption);
  84. axisModelCreator(registers, 'y', CartesianAxisModel, extraOption);
  85. registers.registerComponentView(CartesianXAxisView);
  86. registers.registerComponentView(CartesianYAxisView);
  87. registers.registerPreprocessor(function (option) {
  88. // Only create grid when need
  89. if (option.xAxis && option.yAxis && !option.grid) {
  90. option.grid = {};
  91. }
  92. });
  93. }