Skip to content

Commit

Permalink
- Fixed responsive widths on charts
Browse files Browse the repository at this point in the history
- Log scaled the boxplots
  • Loading branch information
CannonLock committed Oct 9, 2024
1 parent 5e5f149 commit a31432e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const BytesMetricBoxPlot = ({
maintainAspectRatio: false,
scales: {
y: {
type: 'logarithmic'
type: 'logarithmic',
},
},
plugins: {
Expand Down Expand Up @@ -184,7 +184,7 @@ export const MetricBoxPlot = ({
maintainAspectRatio: false,
scales: {
y: {
type: 'logarithmic'
type: 'logarithmic',
},
},
plugins: {
Expand Down
4 changes: 2 additions & 2 deletions web_ui/frontend/app/director/metrics/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const Page = () => {
</Grid>
</Grid>
<Grid item xs={12} display={'flex'} height={'32vh'}>
<Paper sx={{ width: "100%" }}>
<Paper sx={{ width: '100%' }}>
<TransferBarGraph />
</Paper>
</Grid>
Expand All @@ -91,7 +91,7 @@ const Page = () => {
/>,
].map((component, index) => (
<Grid key={index} item xs={6} display={'flex'}>
<Paper sx={{ width: "100%" }}>{component}</Paper>
<Paper sx={{ width: '100%' }}>{component}</Paper>
</Grid>
))}
</Grid>
Expand Down

0 comments on commit a31432e

Please sign in to comment.