-
Notifications
You must be signed in to change notification settings - Fork 15
Bugfix/mon 13349 Trendsgraph on wkhtmltopdf #318
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
euniceremoquillo
wants to merge
49
commits into
master
Choose a base branch
from
bugfix/MON-13349-Trendsgraph-on-Wkhtmltopdf
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
83ff7a9
Replace trends graph js
euniceremoquillo 65bd3e2
Add hover on new trends graph report
euniceremoquillo 5869d9d
Fix bar positions
euniceremoquillo 3874342
Fix date time labels
euniceremoquillo 283768c
Update details on hover
euniceremoquillo 0f0305f
Update availability test
euniceremoquillo 136fb9c
Revert "Update availability test"
euniceremoquillo 29d0251
Remove checks for transparent object
euniceremoquillo 43e1312
Update test to hexadecimal color code
euniceremoquillo b8ed535
Added Scaling function
euniceremoquillo 947b28e
Adjusted minimum width of a scaled bar
euniceremoquillo 8ab9d32
Added test on re-scalling trends graph
euniceremoquillo 1e2752a
Added report data entry on test
euniceremoquillo f2916cf
Replace to check scaled color instead
euniceremoquillo ceb8a61
Change Service Description for test host
euniceremoquillo dcee7e4
Updated rescalling test
euniceremoquillo e26ee59
Replace trends graph js
euniceremoquillo 8d42756
Add hover on new trends graph report
euniceremoquillo 28307cd
Fix bar positions
euniceremoquillo c4707d4
Fix date time labels
euniceremoquillo cfa6b2a
Update details on hover
euniceremoquillo f532460
Update availability test
euniceremoquillo dfe3b58
Revert "Update availability test"
euniceremoquillo a783c54
Remove checks for transparent object
euniceremoquillo 9085178
Update test to hexadecimal color code
euniceremoquillo f63917b
Added Scaling function
euniceremoquillo 32e4b62
Adjusted minimum width of a scaled bar
euniceremoquillo 09a5cc5
Added test on re-scalling trends graph
euniceremoquillo 159dafc
Added report data entry on test
euniceremoquillo bde8d39
Replace to check scaled color instead
euniceremoquillo be1051b
Change Service Description for test host
euniceremoquillo 31e523a
Updated rescalling test
euniceremoquillo 43b4d7a
Updated report data
euniceremoquillo 29f9bd3
Merge branch 'bugfix/MON-13349-Trendsgraph-on-Wkhtmltopdf' of https:/…
euniceremoquillo bac047d
Removed gray object on test
euniceremoquillo ee65047
Adjusted block size
euniceremoquillo 7dc6df7
Added check host and hover
euniceremoquillo 94c30fb
Revert "Adjusted block size"
euniceremoquillo bc11995
Improve tgraph readability
euniceremoquillo 71f4150
Bar length adjustment
euniceremoquillo b72ae46
Handling number of allowable display limit
euniceremoquillo cd5fddb
Revert "Handling number of allowable display limit"
euniceremoquillo d65f2f2
Style adjustments
euniceremoquillo f075fdf
Update trendgraph.css
euniceremoquillo 14bd2a6
Update availability.feature
euniceremoquillo a1bfc3b
Update availability.feature
euniceremoquillo 82a82e3
Updated rounding precision
euniceremoquillo 4a857a1
Displaying slice adjustments
euniceremoquillo 6a21113
Adjust display items from left to right
euniceremoquillo 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| .x-item { | ||
| overflow: hidden; | ||
| width: 100%; | ||
| } | ||
| .tgraph-row { | ||
| position: relative; | ||
| width: 84%; | ||
| height: 40px; | ||
| color: #333; | ||
| float: left; | ||
| padding-left: 1%; | ||
| font: normal normal 8pt Helvetica, Arial, Verdana, sans-serif; | ||
| } | ||
| .tgraph-blockline { | ||
| margin: 2px 0; | ||
| position: relative; | ||
| width: 100%; | ||
| overflow: hidden; | ||
| direction: ltr; | ||
| display: -webkit-box; | ||
| display: -moz-box; | ||
| display: -ms-flexbox; | ||
| display: -webkit-flex; | ||
| display: flex; | ||
| } | ||
| .tgraph-blockline .bar { | ||
| height: 20px; | ||
| margin: 0; | ||
| color: white; | ||
| } | ||
| .tgraph-sub-blockline { | ||
| position: relative; | ||
| width: 100%; | ||
| overflow: hidden; | ||
| align-items: center; | ||
| direction: ltr; | ||
| display: -webkit-box; | ||
| display: -moz-box; | ||
| display: -ms-flexbox; | ||
| display: -webkit-flex; | ||
| display: flex; | ||
| } | ||
| .tgraph-sub-blockline .bar { | ||
| position: relative; | ||
| margin: 0 auto; | ||
| height: 10px; | ||
| min-width: 10px; | ||
| color: white; | ||
| } | ||
| .tgraph-sub-blockline .bar-transparent { | ||
| position: relative; | ||
| margin: 0; | ||
| height: 10px; | ||
| color: white; | ||
| background: 'transparent'; | ||
| } | ||
| .tgraph-time { | ||
| float: left; | ||
| text-align: left; | ||
| font-size: 7pt; | ||
| } | ||
| .tgraph-timeline { | ||
| margin: 0 0; | ||
| border-left: 1px solid #000; | ||
| opacity: 0.1; | ||
| z-index: 0; | ||
| width: 0; | ||
| } | ||
| .y-label { | ||
| float: left; | ||
| width: 15%; | ||
| padding: 10px 0 0 0; | ||
| min-height: 30px; | ||
| font-size: 8pt; | ||
| text-align: right; | ||
| } | ||
| #tooltip { | ||
| position: absolute; | ||
| background: #fff; | ||
| border: 1px solid #aaa; | ||
| padding: 5px; | ||
| display: none; | ||
| } |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.