Skip to content

Commit

Permalink
modified x-axis labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Codebmk committed Jan 22, 2024
1 parent 2f2c67b commit 42d45f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ const AveragesChart = ({ classes, analyticsSites, isGrids, isCohorts, analyticsD
categoryPercentage: numLocations > 0 ? 1 / numLocations : 0.5,
ticks: {
fontColor: 'black',
callback: (value) => `${value.substr(0, 7)}`
callback: (value) => `${value.substr(0, 11)}`
},
gridLines: {
display: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ const ExceedancesChart = (props) => {
},
ticks: {
fontColor: 'black',
callback: (value) => `${value.substr(0, 7)}`
callback: (value) => `${value.substr(0, 11)}`
},
gridLines: {
display: false,
Expand Down

0 comments on commit 42d45f9

Please sign in to comment.