2017-04-19 10:43:57 +00:00
|
|
|
<template>
|
2017-12-29 08:07:42 +00:00
|
|
|
<div class='chart-container'>
|
|
|
|
<chart height='100%' width='100%'></chart>
|
2017-04-19 10:43:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2017-06-14 10:02:12 +00:00
|
|
|
|
2017-04-19 10:43:57 +00:00
|
|
|
<script>
|
2017-10-31 02:49:24 +00:00
|
|
|
import Chart from '@/components/Charts/mixChart'
|
2017-07-06 09:56:17 +00:00
|
|
|
|
2017-08-22 07:43:34 +00:00
|
|
|
export default {
|
2017-10-31 02:49:24 +00:00
|
|
|
name: 'mixChart',
|
|
|
|
components: { Chart }
|
2017-08-22 07:43:34 +00:00
|
|
|
}
|
2017-04-19 10:43:57 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.chart-container{
|
2017-06-14 10:02:12 +00:00
|
|
|
position: relative;
|
2017-12-29 08:07:42 +00:00
|
|
|
padding: 20px;
|
2017-06-14 10:02:12 +00:00
|
|
|
width: 100%;
|
2017-12-29 08:07:42 +00:00
|
|
|
height:85vh;
|
2017-04-19 10:43:57 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|