This repository was archived by the owner on Nov 19, 2024. It is now read-only.
-
Couldn't load subscription status.
- Fork 76
Make trend charts theme-aware #676
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
555d1bf
Make trend charts theme-aware.
uhafner a6af045
Bump version of ECharts to 5.4.0-4-rc815.a_ff2e0060885.
uhafner bdbcf17
Enable row selection only for inline tables.
uhafner 342037a
Improve styling of coverage cell border for new Boostrap layout changes.
uhafner 708ef79
Use theme-colors to render the source code view.
uhafner File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
plugin/src/main/resources/io/jenkins/plugins/coverage/metrics/cell-style.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
plugin/src/test/resources/io/jenkins/plugins/coverage/metrics/charts/chart.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| { | ||
| "domainAxisLabels": [ | ||
| "#1", "#2" | ||
| ], | ||
| "buildNumbers": [ | ||
| 1, 2 | ||
| ], | ||
| "series": [ | ||
| { | ||
| "name": "Line Coverage", | ||
| "type": "line", | ||
| "symbol": "circle", | ||
| "data": [ | ||
| 50.0, 25.0 | ||
| ], | ||
| "itemStyle": { | ||
| "color": "--green", | ||
| "borderColor": "#ffffff", | ||
| "borderWidth": 0 | ||
| }, | ||
| "stack": "", | ||
| "areaStyle": { | ||
| "normal": true | ||
| } | ||
| }, | ||
| { | ||
| "name": "Branch Coverage", | ||
| "type": "line", | ||
| "symbol": "circle", | ||
| "data": [ | ||
| 75.0, 25.0 | ||
| ], | ||
| "itemStyle": { | ||
| "color": "--dark-green", | ||
| "borderColor": "#ffffff", | ||
| "borderWidth": 0 | ||
| }, | ||
| "stack": "", | ||
| "areaStyle": { | ||
| "normal": true | ||
| } | ||
| } | ||
| ], | ||
| "domainAxisItemName": "Build", | ||
| "integerRangeAxis": false, | ||
| "rangeMax": 100.0, | ||
| "rangeMin": 25.0 | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check notice
Code scanning / CodeQL
Unused classes and interfaces