Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cc-qtl-db
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Wiki
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cc-qtl
cc-qtl-db
Merge requests
!99
Resolve "Make use of dynamic component for result chart"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Make use of dynamic component for result chart"
make-use-of-dynamic-component-for-result-chart-107
into
dev
Overview
0
Commits
2
Pipelines
3
Changes
15
Merged
Remi PLANEL
requested to merge
make-use-of-dynamic-component-for-result-chart-107
into
dev
2 years ago
Overview
0
Commits
2
Pipelines
3
Changes
11
Expand
Closes
#107 (closed)
Edited
2 years ago
by
Remi PLANEL
0
0
Merge request reports
Viewing commit
4e6f6dff
Prev
Next
Show latest version
11 files
+
311
−
219
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
Search (e.g. *.vue) (Ctrl+P)
4e6f6dff
Use dynamic component in tabs to display charts. Remove dedicated result chart page
· 4e6f6dff
Remi PLANEL
authored
2 years ago
client-nuxt/components/charts/GenomeScan.vue
+
9
−
11
Options
<
template
>
<v-container
fluid
>
<v-card
flat
>
<ProgressBar
:waiting=
"computedWaiting"
message=
"Rendering Genome Scan"
/>
<highcharts
ref=
"chart"
:options=
"formattedchartOptions"
:update-args=
"[true, true, false]"
:deep-copy-on-update=
"true"
></highcharts>
</v-card>
</v-container>
<v-card
flat
class=
"mt-2"
>
<ProgressBar
:waiting=
"computedWaiting"
message=
"Rendering Genome Scan"
/>
<highcharts
ref=
"chart"
:options=
"formattedchartOptions"
:update-args=
"[true, true, false]"
:deep-copy-on-update=
"true"
></highcharts>
</v-card>
</
template
>
<
script
>
import
ProgressBar
from
'
@/components/ProgressBar
'