mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:17:08 +00:00
Add some graphics to the shotlog
This commit is contained in:
@@ -53,6 +53,50 @@
|
||||
</v-row>
|
||||
</template>
|
||||
|
||||
<v-row>
|
||||
<v-col cols=12 md=6 lg=4>
|
||||
<div style="height:300px;">
|
||||
<dougal-graph-project-sequence-inline-crossline
|
||||
:items="shots"
|
||||
gun-data-format="smsrc"
|
||||
facet="2dhist"
|
||||
>
|
||||
</dougal-graph-project-sequence-inline-crossline>
|
||||
</div>
|
||||
</v-col>
|
||||
|
||||
<v-col cols=12 md=6 lg=4>
|
||||
<div style="height:300px;">
|
||||
<dougal-graph-project-sequence-inline-crossline
|
||||
:items="shots"
|
||||
gun-data-format="smsrc"
|
||||
facet="crossline"
|
||||
>
|
||||
</dougal-graph-project-sequence-inline-crossline>
|
||||
</div>
|
||||
</v-col>
|
||||
|
||||
<v-col cols=12 md=6 lg=4>
|
||||
<div ref="" style="height:300px;">
|
||||
<dougal-graph-project-sequence-shotpoint-timing
|
||||
:items="shots"
|
||||
facet="area"
|
||||
>
|
||||
</dougal-graph-project-sequence-shotpoint-timing>
|
||||
</div>
|
||||
</v-col>
|
||||
|
||||
<v-col cols=12 md=6 lg=4 >
|
||||
<div ref="" style="height:300px;">
|
||||
<dougal-graph-project-sequence-inline-crossline
|
||||
:items="shots"
|
||||
facet="c-o"
|
||||
>
|
||||
</dougal-graph-project-sequence-inline-crossline>
|
||||
</div>
|
||||
</v-col>
|
||||
</v-row>
|
||||
|
||||
</v-container>
|
||||
|
||||
<v-card outlined tile class="flex-grow-1">
|
||||
@@ -209,10 +253,17 @@
|
||||
|
||||
<script>
|
||||
import { mapActions, mapGetters } from 'vuex';
|
||||
import DougalGraphProjectSequenceInlineCrossline from '@/components/graphs/project/sequence/inline-crossline';
|
||||
import DougalGraphProjectSequenceShotpointTiming from '@/components/graphs/project/sequence/shotpoint-timing';
|
||||
|
||||
export default {
|
||||
name: "SequenceSummary",
|
||||
|
||||
components: {
|
||||
DougalGraphProjectSequenceInlineCrossline,
|
||||
DougalGraphProjectSequenceShotpointTiming
|
||||
},
|
||||
|
||||
data () {
|
||||
return {
|
||||
filter: null,
|
||||
|
||||
Reference in New Issue
Block a user