MiniArea.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <div class="antv-mini-chart">
  3. <div class="chart-content" :style="{ height: 46 }">
  4. <v-chart :force-fit="true" :height="height" :data="data" :padding="[36, 5, 18, 5]">
  5. <v-tooltip />
  6. <v-smooth-area position="x*y" />
  7. </v-chart>
  8. </div>
  9. </div>
  10. </template>
  11. <script>
  12. import moment from 'moment'
  13. const data = []
  14. const beginDay = new Date().getTime()
  15. const fakeY = [7, 5, 4, 2, 4, 7, 5, 6, 5, 9, 6, 3, 1, 5, 3, 6, 5]
  16. for (let i = 0; i < fakeY.length; i += 1) {
  17. data.push({
  18. x: moment(new Date(beginDay + 1000 * 60 * 60 * 24 * i)).format('YYYY-MM-DD'),
  19. y: fakeY[i]
  20. })
  21. }
  22. const tooltip = [
  23. 'x*y',
  24. (x, y) => ({
  25. name: x,
  26. value: y
  27. })
  28. ]
  29. const scale = [{
  30. dataKey: 'x',
  31. min: 2
  32. }, {
  33. dataKey: 'y',
  34. title: '时间',
  35. min: 1,
  36. max: 22
  37. }]
  38. export default {
  39. name: "MiniArea",
  40. data () {
  41. return {
  42. data,
  43. scale,
  44. tooltip,
  45. height: 100
  46. }
  47. }
  48. }
  49. </script>
  50. <style lang="scss" scoped>
  51. .antv-mini-chart {
  52. position: relative;
  53. width: 100%;
  54. .chart-content {
  55. position: absolute;
  56. bottom: -28px;
  57. width: 100%;
  58. margin: 0 -5px;
  59. overflow: hidden;
  60. }
  61. }
  62. </style>