You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
351 B
23 lines
351 B
<template>
|
|
<div class="chart-container">
|
|
<chart height="100%" width="100%" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Chart from '@/components/Charts/MixChart'
|
|
|
|
export default {
|
|
name: 'MixChart',
|
|
components: { Chart }
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.chart-container{
|
|
position: relative;
|
|
width: 100%;
|
|
height: calc(100vh - 84px);
|
|
}
|
|
</style>
|
|
|
|
|