Skip to content

Commit

Permalink
update screenshot for log scale fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Lai committed Jan 3, 2025
1 parent 97ac6d6 commit 121d14b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/shared/components/plots/BoxScatterPlot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ export default class BoxScatterPlot<
}}
orientation="bottom"
offsetY={50}
domain={this.props.horizontal && this.plotDomain.x}
domain={this.plotDomain.x}
crossAxis={false}
label={this.props.axisLabelX}
tickValues={
Expand Down Expand Up @@ -633,7 +633,7 @@ export default class BoxScatterPlot<
<VictoryAxis
orientation="left"
offsetX={50}
domain={!this.props.horizontal && this.plotDomain.y}
domain={this.plotDomain.y}
crossAxis={false}
label={this.yAxisLabel}
dependentAxis={true}
Expand Down

0 comments on commit 121d14b

Please sign in to comment.