Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
arsnova-lite
Manage
Activity
Members
Labels
Plan
Issues
24
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Privacy
Imprint
Contact
Snippets
Groups
Projects
Show more breadcrumbs
ARSnova
arsnova-lite
Merge requests
!85
WIP: Resolve "answer statistics (logic)"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Resolve "answer statistics (logic)"
113-answer-statistics-logic
into
master
Overview
0
Commits
0
Pipelines
7
Changes
0
Closed
Hagen Dreßler
requested to merge
113-answer-statistics-logic
into
master
7 years ago
Overview
0
Commits
0
Pipelines
7
Changes
3
Expand
Information
added responded answer statistic for choice and text answers
added evaluation overview for choice answers (no api connection, no in-memory-data)
Testing
checkout answer statistic room
check functionality
give feedback about the style
Closes
#113 (closed)
Edited
7 years ago
by
Hagen Dreßler
0
0
Merge request reports
Viewing commit
28fb804c
Show latest version
3 files
+
38
−
4
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
28fb804c
Edit html and style of answer-statistic
· 28fb804c
Hagen Dreßler
authored
7 years ago
src/app/answer-statistics/answer-statistics.component.html
+
20
−
4
Options
<mat-card>
<mat-progress-bar
[value]=
"50"
>
</mat-progress-bar>
</mat-card>
<div
fxLayout=
"row"
fxLayoutAlign=
"center"
>
<div
fxLayout=
"column"
fxLayoutGap=
"20px"
>
<mat-card>
<mat-tab-group>
<mat-tab
label=
"Answer statistic"
>
<mat-select
placeholder=
"Answers"
fxLayoutAlign=
"right"
>
<mat-option
*ngFor=
"let state of states"
[value]=
"state.value"
>
{{ state.value }}
</mat-option>
</mat-select>
<div
class=
"bars"
>
Answer 1
<mat-progress-bar
[value]=
"50"
#col
*ngIf=
"state.value === 'Responded' :"
>
</mat-progress-bar>
</div>
</mat-tab>
</mat-tab-group>
</mat-card>
</div>
</div>