SingleAxisPointer.js 5.4 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 singleAxisHelper from '../../coord/single/singleAxisHelper.js';
  44. var XY = ['x', 'y'];
  45. var WH = ['width', 'height'];
  46. var SingleAxisPointer = /** @class */function (_super) {
  47. __extends(SingleAxisPointer, _super);
  48. function SingleAxisPointer() {
  49. return _super !== null && _super.apply(this, arguments) || this;
  50. }
  51. /**
  52. * @override
  53. */
  54. SingleAxisPointer.prototype.makeElOption = function (elOption, value, axisModel, axisPointerModel, api) {
  55. var axis = axisModel.axis;
  56. var coordSys = axis.coordinateSystem;
  57. var otherExtent = getGlobalExtent(coordSys, 1 - getPointDimIndex(axis));
  58. var pixelValue = coordSys.dataToPoint(value)[0];
  59. var axisPointerType = axisPointerModel.get('type');
  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 = singleAxisHelper.layout(axisModel);
  68. viewHelper.buildCartesianSingleLabelElOption(
  69. // @ts-ignore
  70. value, elOption, layoutInfo, axisModel, axisPointerModel, api);
  71. };
  72. /**
  73. * @override
  74. */
  75. SingleAxisPointer.prototype.getHandleTransform = function (value, axisModel, axisPointerModel) {
  76. var layoutInfo = singleAxisHelper.layout(axisModel, {
  77. labelInside: false
  78. });
  79. // @ts-ignore
  80. layoutInfo.labelMargin = axisPointerModel.get(['handle', 'margin']);
  81. var position = viewHelper.getTransformedPosition(axisModel.axis, value, layoutInfo);
  82. return {
  83. x: position[0],
  84. y: position[1],
  85. rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)
  86. };
  87. };
  88. /**
  89. * @override
  90. */
  91. SingleAxisPointer.prototype.updateHandleTransform = function (transform, delta, axisModel, axisPointerModel) {
  92. var axis = axisModel.axis;
  93. var coordSys = axis.coordinateSystem;
  94. var dimIndex = getPointDimIndex(axis);
  95. var axisExtent = getGlobalExtent(coordSys, dimIndex);
  96. var currPosition = [transform.x, transform.y];
  97. currPosition[dimIndex] += delta[dimIndex];
  98. currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);
  99. currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);
  100. var otherExtent = getGlobalExtent(coordSys, 1 - dimIndex);
  101. var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;
  102. var cursorPoint = [cursorOtherValue, cursorOtherValue];
  103. cursorPoint[dimIndex] = currPosition[dimIndex];
  104. return {
  105. x: currPosition[0],
  106. y: currPosition[1],
  107. rotation: transform.rotation,
  108. cursorPoint: cursorPoint,
  109. tooltipOption: {
  110. verticalAlign: 'middle'
  111. }
  112. };
  113. };
  114. return SingleAxisPointer;
  115. }(BaseAxisPointer);
  116. var pointerShapeBuilder = {
  117. line: function (axis, pixelValue, otherExtent) {
  118. var targetShape = viewHelper.makeLineShape([pixelValue, otherExtent[0]], [pixelValue, otherExtent[1]], getPointDimIndex(axis));
  119. return {
  120. type: 'Line',
  121. subPixelOptimize: true,
  122. shape: targetShape
  123. };
  124. },
  125. shadow: function (axis, pixelValue, otherExtent) {
  126. var bandWidth = axis.getBandWidth();
  127. var span = otherExtent[1] - otherExtent[0];
  128. return {
  129. type: 'Rect',
  130. shape: viewHelper.makeRectShape([pixelValue - bandWidth / 2, otherExtent[0]], [bandWidth, span], getPointDimIndex(axis))
  131. };
  132. }
  133. };
  134. function getPointDimIndex(axis) {
  135. return axis.isHorizontal() ? 0 : 1;
  136. }
  137. function getGlobalExtent(coordSys, dimIndex) {
  138. var rect = coordSys.getRect();
  139. return [rect[XY[dimIndex]], rect[XY[dimIndex]] + rect[WH[dimIndex]]];
  140. }
  141. export default SingleAxisPointer;