2022-03-24 04:15:14 +00:00
|
|
|
<template>
|
|
|
|
|
<div class="chart-container">
|
|
|
|
|
<chart height="100%" width="100%" />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2022-08-05 08:04:07 +00:00
|
|
|
import Chart from '@/components/Charts/LineMarker.vue'
|
2022-03-24 04:15:14 +00:00
|
|
|
|
2022-08-05 08:04:07 +00:00
|
|
|
// export default {
|
|
|
|
|
// // name: 'LineChart',
|
|
|
|
|
// // components: { Chart }
|
|
|
|
|
// }
|
2022-03-24 04:15:14 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2022-08-05 08:04:07 +00:00
|
|
|
.chart-container {
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: calc(100vh - 130px);
|
|
|
|
|
}
|
2022-03-24 04:15:14 +00:00
|
|
|
</style>
|