Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
waterdataui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Water Mission Area
Internet of Water
waterdataui
Commits
3c02edd0
Commit
3c02edd0
authored
4 years ago
by
Briggs, Aaron Shane
Browse files
Options
Downloads
Patches
Plain Diff
graph coloring complete
parent
c2fc930e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
assets/src/scripts/monitoring-location/components/hydrograph/discrete-data.js
+6
-1
6 additions, 1 deletion
...onitoring-location/components/hydrograph/discrete-data.js
assets/src/styles/components/hydrograph/_graph.scss
+9
-1
9 additions, 1 deletion
assets/src/styles/components/hydrograph/_graph.scss
with
15 additions
and
2 deletions
assets/src/scripts/monitoring-location/components/hydrograph/discrete-data.js
+
6
−
1
View file @
3c02edd0
...
...
@@ -3,6 +3,10 @@ import {defineCircleMarker} from 'd3render/markers';
const
GW_LEVEL_RADIUS
=
7
;
const
GW_LEVEL_CLASS
=
'
gw-level-point
'
;
const
adjustClassForApprovalCode
=
function
(
groundwaterPointData
)
{
return
groundwaterPointData
[
'
qualifiers
'
][
0
];
};
/*
* Render the ground water level symbols on the svg in their own group. If the group exists, remove
* it before rendering again.
...
...
@@ -20,8 +24,9 @@ export const drawGroundwaterLevels = function(svg, {levels, xScale, yScale, enab
}
levels
.
forEach
((
level
)
=>
{
console
.
log
(
'
in drawGroundwaterLevels, with level:
'
,
level
)
group
.
append
(
'
circle
'
)
.
attr
(
'
class
'
,
GW_LEVEL_CLASS
)
.
attr
(
'
class
'
,
`
${
GW_LEVEL_CLASS
}
approval-code-
${
adjustClassForApprovalCode
(
level
).
toLowerCase
()}
`
)
.
attr
(
'
r
'
,
GW_LEVEL_RADIUS
)
.
attr
(
'
cx
'
,
xScale
(
level
.
dateTime
))
.
attr
(
'
cy
'
,
yScale
(
level
.
value
));
...
...
This diff is collapsed.
Click to expand it.
assets/src/styles/components/hydrograph/_graph.scss
+
9
−
1
View file @
3c02edd0
...
...
@@ -60,13 +60,21 @@ svg {
opacity
:
$not-current-method-opacity
;
}
}
/* This case will catch any groundwater approval codes that are not approved (including provisional)
and color them to match provisional.
*/
.gw-level-point
{
stroke
:
$default-time-series
;
stroke-width
:
2px
;
fill
:
none
;
}
.gw-level-point.approval-code-a
{
stroke
:
$approved-time-series
;
stroke-width
:
2px
;
fill
:
none
;
}
.ts-compare
{
stroke-width
:
1px
;
stroke
:
$default-time-series-compare
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment