SingleAxisPointer.js 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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(value, elOption, layoutInfo, axisModel, axisPointerModel, api);
  69. };
  70. /**
  71. * @override
  72. */
  73. SingleAxisPointer.prototype.getHandleTransform = function (value, axisModel, axisPointerModel) {
  74. var layoutInfo = singleAxisHelper.layout(axisModel, {
  75. labelInside: false
  76. });
  77. layoutInfo.labelMargin = axisPointerModel.get(['handle', 'margin']);
  78. var position = viewHelper.getTransformedPosition(axisModel.axis, value, layoutInfo);
  79. return {
  80. x: position[0],
  81. y: position[1],
  82. rotation: layoutInfo.rotation + (layoutInfo.labelDirection < 0 ? Math.PI : 0)
  83. };
  84. };
  85. /**
  86. * @override
  87. */
  88. SingleAxisPointer.prototype.updateHandleTransform = function (transform, delta, axisModel, axisPointerModel) {
  89. var axis = axisModel.axis;
  90. var coordSys = axis.coordinateSystem;
  91. var dimIndex = getPointDimIndex(axis);
  92. var axisExtent = getGlobalExtent(coordSys, dimIndex);
  93. var currPosition = [transform.x, transform.y];
  94. currPosition[dimIndex] += delta[dimIndex];
  95. currPosition[dimIndex] = Math.min(axisExtent[1], currPosition[dimIndex]);
  96. currPosition[dimIndex] = Math.max(axisExtent[0], currPosition[dimIndex]);
  97. var otherExtent = getGlobalExtent(coordSys, 1 - dimIndex);
  98. var cursorOtherValue = (otherExtent[1] + otherExtent[0]) / 2;
  99. var cursorPoint = [cursorOtherValue, cursorOtherValue];
  100. cursorPoint[dimIndex] = currPosition[dimIndex];
  101. return {
  102. x: currPosition[0],
  103. y: currPosition[1],
  104. rotation: transform.rotation,
  105. cursorPoint: cursorPoint,
  106. tooltipOption: {
  107. verticalAlign: 'middle'
  108. }
  109. };
  110. };
  111. return SingleAxisPointer;
  112. }(BaseAxisPointer);
  113. var pointerShapeBuilder = {
  114. line: function (axis, pixelValue, otherExtent) {
  115. var targetShape = viewHelper.makeLineShape([pixelValue, otherExtent[0]], [pixelValue, otherExtent[1]], getPointDimIndex(axis));
  116. return {
  117. type: 'Line',
  118. subPixelOptimize: true,
  119. shape: targetShape
  120. };
  121. },
  122. shadow: function (axis, pixelValue, otherExtent) {
  123. var bandWidth = axis.getBandWidth();
  124. var span = otherExtent[1] - otherExtent[0];
  125. return {
  126. type: 'Rect',
  127. shape: viewHelper.makeRectShape([pixelValue - bandWidth / 2, otherExtent[0]], [bandWidth, span], getPointDimIndex(axis))
  128. };
  129. }
  130. };
  131. function getPointDimIndex(axis) {
  132. return axis.isHorizontal() ? 0 : 1;
  133. }
  134. function getGlobalExtent(coordSys, dimIndex) {
  135. var rect = coordSys.getRect();
  136. return [rect[XY[dimIndex]], rect[XY[dimIndex]] + rect[WH[dimIndex]]];
  137. }
  138. export default SingleAxisPointer;