1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| <template>
| <div :class="prefixCls">
| <div class="chart-wrapper" :style="{ height: 46 }">
| <v-chart :force-fit="true" :height="100" :data="dataSource" :scale="scale" :padding="[36, 0, 18, 0]">
| <v-tooltip />
| <v-smooth-line position="x*y" :size="2" />
| <v-smooth-area position="x*y" />
| </v-chart>
| </div>
| </div>
| </template>
|
| <script>
| export default {
| name: 'MiniSmoothArea',
| props: {
| prefixCls: {
| type: String,
| default: 'ant-pro-smooth-area'
| },
| scale: {
| type: [Object, Array],
| required: true
| },
| dataSource: {
| type: Array,
| required: true
| }
| },
| data () {
| return {
| height: 100
| }
| }
| }
| </script>
|
| <style lang="less" scoped>
| @import "smooth.area.less";
| </style>
|
|