CartesianAxisPointer.js 5.6 KB

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