Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
infovis-projekt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Informationsvisualisierung 2024
infovis-projekt
Commits
ce643f5a
Commit
ce643f5a
authored
2 months ago
by
Aamon Paul Hoffmann
Browse files
Options
Downloads
Patches
Plain Diff
small node size changes
parent
b0080073
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#24422
passed
2 months ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Main.elm
+26
-12
26 additions, 12 deletions
src/Main.elm
src/Views/ForceDirectedGraph.elm
+6
-7
6 additions, 7 deletions
src/Views/ForceDirectedGraph.elm
with
32 additions
and
19 deletions
src/Main.elm
+
26
−
12
View file @
ce643f5a
...
...
@@ -157,10 +157,12 @@ update msg ( global, local ) =
-- VIEW
icon
:
Html
Msg
icon
=
i
[
Html
.
Attributes
.
class
"
fa-solid fa-house fa-xl"
]
[]
viewNav
:
Model
->
Html
Msg
viewNav
(
global
,
_
)
=
let
...
...
@@ -175,31 +177,43 @@ viewNav ( global, _ ) =
nav
[
Html
.
Attributes
.
class
"
navbar"
]
[
button
[
Html
.
Attributes
.
title
"
Home"
,
activeClass
Home
|>
Html
.
Attributes
.
class
,
ViewChange
Home
|>
onClick
]
[
icon
]
,
activeClass
Home
|>
Html
.
Attributes
.
class
,
ViewChange
Home
|>
onClick
]
[
icon
]
,
div
[
Html
.
Attributes
.
class
"
navbar-title"
]
[
text
"
Schengen Visa Statistics"
]
,
div
[
Html
.
Attributes
.
class
"
navbar-view-icons"
]
[
button
[
Html
.
Attributes
.
title
"
Map"
,
activeClass
MapView
|>
Html
.
Attributes
.
class
,
ViewChange
MapView
|>
onClick
]
[
MapView
.
icon
]
,
activeClass
MapView
|>
Html
.
Attributes
.
class
,
ViewChange
MapView
|>
onClick
]
[
MapView
.
icon
]
,
button
[
Html
.
Attributes
.
title
"
Force"
,
activeClass
ForceDirectedGraph
|>
Html
.
Attributes
.
class
,
ViewChange
ForceDirectedGraph
|>
onClick
]
[
ForceDirectedGraphView
.
icon
]
,
activeClass
ForceDirectedGraph
|>
Html
.
Attributes
.
class
,
ViewChange
ForceDirectedGraph
|>
onClick
]
[
ForceDirectedGraphView
.
icon
]
,
button
[
Html
.
Attributes
.
title
"
BarPlot"
,
activeClass
BarPlot
|>
Html
.
Attributes
.
class
,
ViewChange
BarPlot
|>
onClick
]
[
BarPlotView
.
icon
]
,
activeClass
BarPlot
|>
Html
.
Attributes
.
class
,
ViewChange
BarPlot
|>
onClick
]
[
BarPlotView
.
icon
]
,
button
[
Html
.
Attributes
.
title
"
LinePlot"
,
activeClass
LinePlot
|>
Html
.
Attributes
.
class
,
ViewChange
LinePlot
|>
onClick
]
[
LinePlotView
.
icon
]
,
activeClass
LinePlot
|>
Html
.
Attributes
.
class
,
ViewChange
LinePlot
|>
onClick
]
[
LinePlotView
.
icon
]
,
button
[
Html
.
Attributes
.
title
"
Table"
,
activeClass
DataTable
|>
Html
.
Attributes
.
class
,
ViewChange
DataTable
|>
onClick
]
[
DataTableView
.
icon
]
,
activeClass
DataTable
|>
Html
.
Attributes
.
class
,
ViewChange
DataTable
|>
onClick
]
[
DataTableView
.
icon
]
]
]
...
...
This diff is collapsed.
Click to expand it.
src/Views/ForceDirectedGraph.elm
+
6
−
7
View file @
ce643f5a
...
...
@@ -527,15 +527,14 @@ nodeElement local dat node =
|>
List
.
map
(
\
e
->
Maybe
.
withDefault
1
<|
e
.
totalVisasApplied
)
|>
List
.
sum
baseFontSize
=
15
+
visasApplied
/
1000000
highlightFontSize
=
if
local
.
highlight
==
node
.
label
.
value
then
2
*
baseFontSize
15
+
visasApplied
/
900000
+
(
if
List
.
member
node
.
label
.
value
countryNames
then
5
else
baseFontSize
else
0
)
in
g
[]
[
text_
...
...
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