Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[APM] Fix Transaction duration distribution barchart clickarea #84394

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ export function TransactionDistribution({
const timeFormatter = getDurationFormatter(xMax);

const tooltipProps: SettingsSpec['tooltip'] = {
placement: 'bottom',
sorenlouv marked this conversation as resolved.
Show resolved Hide resolved
headerFormatter: (tooltip: TooltipValue) => {
const serie = buckets.find((bucket) => bucket.x0 === tooltip.value);
if (serie) {
Expand Down Expand Up @@ -198,6 +199,7 @@ export function TransactionDistribution({
/>
{selectedBucket && (
<RectAnnotation
zIndex={-1}
id="highlighted_bucket"
dataValues={[
{
Expand Down