12345678910111213141516171819202122232425 |
- <script lang="ts">
- import DisplayChartBar from './display-chart-bar.vue'
- import {v4 as uuidv4} from 'uuid';
- export default {
- name : 'DisplayChartLine',
- extends : DisplayChartBar,
- data(){
- return{
- dataList : [] as any,
- loading : false,
- chartStyle: { width: "100%", height: "400px" },
- chart : null as any,
- serieType : 'line',
- id : uuidv4()
- }
- },
- methods:{
- }
- }
- </script>
- <style lang="less" scoped>
- @import 'drag-base.less';
- </style>
|