我正在使用ngx-charts-tooltip-area:
<svg:g ngx-charts-tooltip-area
*ngIf="!tooltipDisabled"
[dims]="tooltipDims"
[xSet]="xSet"
[xScale]="xScaleLine"
[yScale]="yScaleLine"
[results]="combinedSeries"
[colors]="colorsLine"
[tooltipDisabled]="tooltipDisabled"
(hover)="updateHoveredVertical($event)"
/>
我想知道如何强制工具提示始终显示在鼠标光标的左侧。
Google告诉我,有一个tooltipPlacement带有诸如“ left”或“ right”之类的值,但在ngx-charts-tooltip-area上不起作用。我在父元素ngx-charts-chart上尝试过,但是那也不起作用。
如何强制工具提示始终显示在左侧?