Skip to content

Commit

Permalink
Change axis colors of workflow metrics to match the theme
Browse files Browse the repository at this point in the history
  • Loading branch information
massongit committed May 22, 2024
1 parent f974e0c commit 16dae53
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 19 deletions.
12 changes: 8 additions & 4 deletions dist/main/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/main/index.js.map

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions dist/post/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/post/index.js.map

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions dist/sc/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sc/index.js.map

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions src/statCollector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,10 +361,12 @@ async function getLineGraph(options: LineGraphOptions): Promise<GraphResponse> {
width: 1000,
height: 500,
xAxis: {
label: 'Time'
label: 'Time',
color: options.axisColor
},
yAxis: {
label: options.label
label: options.label,
color: options.axisColor
},
timeTicks: {
unit: 'auto'
Expand Down Expand Up @@ -395,10 +397,12 @@ async function getStackedAreaGraph(
width: 1000,
height: 500,
xAxis: {
label: 'Time'
label: 'Time',
color: options.axisColor
},
yAxis: {
label: options.label
label: options.label,
color: options.axisColor
},
timeTicks: {
unit: 'auto'
Expand Down

0 comments on commit 16dae53

Please sign in to comment.