Skip to content

Commit

Permalink
fix annotation label overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
kgopal492 committed Apr 3, 2024
1 parent cc413dd commit 66b94f1
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,9 @@ export function transformIntervalAnnotation(
backgroundColor: theme.colors.grayscale.light5,
},
}
: {};
: {
show: false,
};

series.push({
id: `Interval - ${label}`,
Expand Down Expand Up @@ -398,7 +400,9 @@ export function transformEventAnnotation(
backgroundColor: theme.colors.grayscale.light5,
},
}
: {};
: {
show: false,
};

series.push({
id: `Event - ${label}`,
Expand Down

0 comments on commit 66b94f1

Please sign in to comment.