Skip to content

Commit

Permalink
Make ScatterPlot y-axis margin wider to fit longer durations (#2211)
Browse files Browse the repository at this point in the history
## Which problem is this PR solving?
- Resolve #2180 

## Description of the changes
- Make ScatterPlot margin wider, `50 px` => `70 px`

## How was this change tested?
- manual test

## Checklist
- [x] I have read
https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md
- [x] I have signed all commits
- [ ] I have added unit tests for the new functionality
- [x] I have run lint and test steps successfully
  - for `jaeger`: `make lint test`
  - for `jaeger-ui`: `yarn lint` and `yarn test`

Signed-off-by: tico88612 <17496418+tico88612@users.noreply.github.com>
  • Loading branch information
tico88612 committed Mar 14, 2024
1 parent 3d9420a commit 44babbb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default function ScatterPlot(props) {
{containerWidth && (
<XYPlot
margin={{
left: 50,
left: 70,
}}
width={containerWidth}
colorType="literal"
Expand Down

0 comments on commit 44babbb

Please sign in to comment.