CartesianAxisPointer.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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 BaseAxisPointer from './BaseAxisPointer.js';
  42. import * as viewHelper from './viewHelper.js';
  43. import * as cartesianAxisHelper from '../../coord/cartesian/cartesianAxisHelper.js';
  44. var CartesianAxisPointer = /** @class */function (_super) {
  45. __extends(CartesianAxisPointer, _super);
  46. function CartesianAxisPointer() {
  47. return _super !== null && _super.apply(this, arguments) || this;
  48. }
  49. /**
  50. * @override
  51. */
  52. CartesianAxisPointer.prototype.makeElOption = function (elOption, value, axisModel, axisPointerModel, api) {
  53. var axis = axisModel.axis;
  54. var grid = axis.grid;
  55. var axisPointerType = axisPointerModel.get('type');
  56. var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent();
  57. var pixelValue = axis.toGlobalCoord(axis.dataToCoord(value, true));
  58. if (axisPointerType && axisPointerType !== 'none') {
  59. var elStyle = viewHelper.buildElStyle(axisPointerModel);
  60. var pointerOption = pointerShapeBuilder[axisPointerType](axis, pixelValue, otherExtent);
  61. pointerOption.style = elStyle;
  62. elOption.graphicKey = pointerOption.type;
  63. elOption.pointer = pointerOption;
  64. }
  65. var layoutInfo = cartesianAxisHelper.layout(grid.getRect(), axisModel);
  66. viewHelper.buildCartesianSingleLabelElOption(value, elOption, layoutInfo, axisModel, axisPointerModel, api);
  67. };
  68. /**
  69. * @override
  70. */
  71. CartesianAxisPointer.prototype.getHandleTransform = function (value, axisModel, axisPointerModel) {
  72. var layoutInfo = cartesianAxisHelper.layout(axisModel.axis.grid.getRect(), axisModel, {
  73. labelInside: false
  74. });
  75. layoutInfo.labelMargin = axisPointerModel.get(['handle', 'margin']);
  76. var pos = viewHelper.getTransformedPosition(axisModel.axis, value, layoutInfo);
  77. return {
  78. x: pos[0],
  79. y: pos[1],
  80. rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)
  81. };
  82. };
  83. /**
  84. * @override
  85. */
  86. CartesianAxisPointer.prototype.updateHandleTransform = function (transform, delta, axisModel, axisPointerModel) {
  87. var axis = axisModel.axis;
  88. var grid = axis.grid;
  89. var axisExtent = axis.getGlobalExtent(true);
  90. var otherExtent = getCartesian(grid, axis).getOtherAxis(axis).getGlobalExtent();
  91. var dimIndex = axis.dim === 'x' ? 0 : 1;
  92. var currPosition = [transform.x, transform.y];
  93. currPosition[dimIndex] += delta[dimIndex];
  94. currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);
  95. currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);
  96. var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;
  97. var cursorPoint = [cursorOtherValue, cursorOtherValue];
  98. cursorPoint[dimIndex] = currPosition[dimIndex];
  99. // Make tooltip do not overlap axisPointer and in the middle of the grid.
  100. var tooltipOptions = [{
  101. verticalAlign: 'middle'
  102. }, {
  103. align: 'center'
  104. }];
  105. return {
  106. x: currPosition[0],
  107. y: currPosition[1],
  108. rotation: transform.rotation,
  109. cursorPoint: cursorPoint,
  110. tooltipOption: tooltipOptions[dimIndex]
  111. };
  112. };
  113. return CartesianAxisPointer;
  114. }(BaseAxisPointer);
  115. function getCartesian(grid, axis) {
  116. var opt = {};
  117. opt[axis.dim + 'AxisIndex'] = axis.index;
  118. return grid.getCartesian(opt);
  119. }
  120. var pointerShapeBuilder = {
  121. line: function (axis, pixelValue, otherExtent) {
  122. var targetShape = viewHelper.makeLineShape([pixelValue, otherExtent[0]], [pixelValue, otherExtent[1]], getAxisDimIndex(axis));
  123. return {
  124. type: 'Line',
  125. subPixelOptimize: true,
  126. shape: targetShape
  127. };
  128. },
  129. shadow: function (axis, pixelValue, otherExtent) {
  130. var bandWidth = Math.max(1, axis.getBandWidth());
  131. var span = otherExtent[1] - otherExtent[0];
  132. return {
  133. type: 'Rect',
  134. shape: viewHelper.makeRectShape([pixelValue - bandWidth / 2, otherExtent[0]], [bandWidth, span], getAxisDimIndex(axis))
  135. };
  136. }
  137. };
  138. function getAxisDimIndex(axis) {
  139. return axis.dim === 'x' ? 0 : 1;
  140. }
  141. export default CartesianAxisPointer;