Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vulnerability-indicators
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
VizLab
vulnerability-indicators
Commits
3fb40f08
Commit
3fb40f08
authored
10 months ago
by
Cee Nell
Browse files
Options
Downloads
Patches
Plain Diff
test new color scale
parent
d4ca5349
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!22
Make beeswarm vertical
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/App.vue
+2
-10
2 additions, 10 deletions
src/App.vue
src/components/BeeswarmChart.vue
+71
-23
71 additions, 23 deletions
src/components/BeeswarmChart.vue
src/views/VisualizationView.vue
+1
-1
1 addition, 1 deletion
src/views/VisualizationView.vue
with
74 additions
and
34 deletions
src/App.vue
+
2
−
10
View file @
3fb40f08
...
@@ -80,14 +80,6 @@ a, button {
...
@@ -80,14 +80,6 @@ a, button {
touch-action
:
manipulation
;
/* Element doesn't want double-tap on mobile to zoom */
touch-action
:
manipulation
;
/* Element doesn't want double-tap on mobile to zoom */
}
}
// svg {
// /* SVGs fit the parent container by default */
// height: 100%;
// width: 100%;
// fill: currentColor;
// pointer-events: none;
// }
iframe
,
video
{
iframe
,
video
{
/* Make iframes & videos fit the parent container by default */
/* Make iframes & videos fit the parent container by default */
height
:
100%
;
height
:
100%
;
...
@@ -99,8 +91,8 @@ body {
...
@@ -99,8 +91,8 @@ body {
background-color
:
white
;
background-color
:
white
;
margin
:
0
;
margin
:
0
;
padding
:
0
;
padding
:
0
;
line-height
:
1
.
2
;
line-height
:
1
.
35
;
font-size
:
1
.9
5
rem
;
font-size
:
1
.9rem
;
font-weight
:
400
;
font-weight
:
400
;
-webkit-font-smoothing
:
antialiased
;
-webkit-font-smoothing
:
antialiased
;
-moz-osx-font-smoothing
:
grayscale
;
-moz-osx-font-smoothing
:
grayscale
;
...
...
This diff is collapsed.
Click to expand it.
src/components/BeeswarmChart.vue
+
71
−
23
View file @
3fb40f08
<
template
>
<
template
>
<section
id=
"beeswarm"
>
<section
id=
"beeswarm"
>
<div
id=
"toggle-container"
>
<div
id=
"text1"
class=
"text-container"
>
<div
id=
"checkbox1-container"
>
<p>
Everyone needs access to clean water. In the western U.S., water insecurity is influenced by a number of social vulnerability indicators. This includes
<input
type=
"checkbox"
id=
"checkbox1"
v-model=
"checkboxStates[0]"
@
change=
"handleCheckboxChange(0)"
>
<span
class=
"highlight demographicCharacteristics"
id=
"demographicCharacteristics"
>
demographic characteristics
</span>
,
<label
for=
"checkbox1"
>
Evidence
</label>
<span
class=
"highlight health"
id=
"health"
>
health
</span>
,
<span
class=
"highlight livingConditions"
id=
"livingConditions"
>
living conditions
</span>
,
<span
class=
"highlight socioeconomicStatus"
id=
"socioeconomicStatus"
>
socioeconomic status
</span>
,
<span
class=
"highlight landTenure"
id=
"landTenure"
>
land tenure
</span>
,
<span
class=
"highlight riskPerception"
id=
"riskPerception"
>
risk perception
</span>
, and
<span
class=
"highlight exposureToStressors"
id=
"exposureToStressors"
>
exposure to stressors
</span>
(like drought or pollution).
</p>
</div>
</div>
<div
id=
"checkbox2-container"
>
<div
id=
"toggle-container"
>
<input
type=
"checkbox"
id=
"checkbox2"
v-model=
"checkboxStates[1]"
@
change=
"handleCheckboxChange(1)"
>
<div
id=
"checkbox1-container"
>
<label
for=
"checkbox2"
>
Agreement
</label>
<input
type=
"checkbox"
id=
"checkbox1"
v-model=
"checkboxStates[0]"
@
change=
"handleCheckboxChange(0)"
>
<label
for=
"checkbox1"
>
Evidence
</label>
</div>
<div
id=
"checkbox2-container"
>
<input
type=
"checkbox"
id=
"checkbox2"
v-model=
"checkboxStates[1]"
@
change=
"handleCheckboxChange(1)"
>
<label
for=
"checkbox2"
>
Agreement
</label>
</div>
<div
id=
"checkbox3-container"
>
<input
type=
"checkbox"
id=
"checkbox3"
v-model=
"checkboxStates[2]"
@
change=
"handleCheckboxChange(2)"
>
<label
for=
"checkbox3"
>
Direction
</label>
</div>
</div>
</div>
<div
id=
"checkbox3-container"
>
<div
id=
"beeswarm-chart-container"
></div>
<input
type=
"checkbox"
id=
"checkbox3"
v-model=
"checkboxStates[2]"
@
change=
"handleCheckboxChange(2)"
>
</section>
<label
for=
"checkbox3"
>
Direction
</label>
</div>
</div>
<div
id=
"beeswarm-chart-container"
></div>
</section>
</
template
>
</
template
>
<
script
setup
>
<
script
setup
>
...
@@ -41,13 +52,13 @@ let margin = {top: 30, right: 20, bottom: 20, left: 30}
...
@@ -41,13 +52,13 @@ let margin = {top: 30, right: 20, bottom: 20, left: 30}
// set colors for bubble charts
// set colors for bubble charts
const
dimensionColors
=
{
const
dimensionColors
=
{
Demographiccharacteristics
:
"
#
625D0B
"
,
Demographiccharacteristics
:
"
#
092836
"
,
Landtenure
:
"
#
5C0601
"
,
Landtenure
:
"
#
2a468f
"
,
Livingconditions
:
"
#
0B4E8B
"
,
Livingconditions
:
"
#
7a5195
"
,
Socioeconomicstatus
:
"
#
DC8260
"
,
Socioeconomicstatus
:
"
#
1b695e
"
,
Health
:
"
#
7F4A89
"
,
Health
:
"
#
ef5675
"
,
Riskperception
:
"
#
249CB1
"
,
Riskperception
:
"
#
ff764a
"
,
Exposure
:
"
#
B47D83
"
Exposure
:
"
#
ffa600
"
}
}
// load data and then make chart
// load data and then make chart
...
@@ -132,7 +143,7 @@ function createScales(data) {
...
@@ -132,7 +143,7 @@ function createScales(data) {
// set radius based on evidence value
// set radius based on evidence value
const
radiusScale
=
d3
.
scaleLinear
()
const
radiusScale
=
d3
.
scaleLinear
()
.
domain
([
d3
.
min
(
data
.
value
,
d
=>
d
.
evidence_val
),
d3
.
max
(
data
.
value
,
d
=>
d
.
evidence_val
)])
.
domain
([
d3
.
min
(
data
.
value
,
d
=>
d
.
evidence_val
),
d3
.
max
(
data
.
value
,
d
=>
d
.
evidence_val
)])
.
range
([
1
0
,
5
0
]);
.
range
([
2
0
,
6
0
]);
return
{
xScale
,
radiusScale
}
return
{
xScale
,
radiusScale
}
}
}
...
@@ -342,6 +353,14 @@ function sortByDirection() {
...
@@ -342,6 +353,14 @@ function sortByDirection() {
<
style
scoped
lang=
"scss"
>
<
style
scoped
lang=
"scss"
>
$switchWidth
:
12rem
;
$switchWidth
:
12rem
;
$Demographiccharacteristics
:
"#625D0B"
;
$Landtenure
:
"#5C0601"
;
$Livingconditions
:
"#0B4E8B"
;
$Socioeconomicstatus
:
"#DC8260"
;
$Health
:
"#7F4A89"
;
$Riskperception
:
"#249CB1"
;
$Exposure
:
"#B47D83"
;
#toggle-container
{
#toggle-container
{
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
...
@@ -493,5 +512,34 @@ $switchWidth: 12rem;
...
@@ -493,5 +512,34 @@ $switchWidth: 12rem;
text
.xLabel
{
text
.xLabel
{
font-weight
:
600
;
font-weight
:
600
;
}
}
.highlight
{
color
:
white
;
padding
:
0
.25px
5px
;
border-radius
:
10px
;
white-space
:
nowrap
;
}
.demographicCharacteristics
{
background-color
:
#092836
;
}
.landTenure
{
background-color
:
#2a468f
;
}
.livingConditions
{
background-color
:
#7a5195
;
}
.socioeconomicStatus
{
background-color
:
#1b695e
;
}
.health
{
background-color
:
#ef5675
;
}
.riskPerception
{
background-color
:
#ff6b4a
;
}
.exposureToStressors
{
background-color
:
#ffa600
;
}
</
style
>
</
style
>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/views/VisualizationView.vue
+
1
−
1
View file @
3fb40f08
<
template
>
<
template
>
<section
id=
"visualization"
>
<section
id=
"visualization"
>
<VizTitle
/>
<VizTitle
/>
<Beeswarm
/>
<Beeswarm
Chart
/>
<NarrativeIntro
/>
<NarrativeIntro
/>
<BubbleChart
/>
<BubbleChart
/>
<Dendrogram
/>
<Dendrogram
/>
...
...
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