antd vue v-chart

<template>
  <div :style="{ padding: '0 0 32px 32px' }">
    <v-chart :forceFit="true" :height="height" :data="dataSource" :scale="scale" :padding="padding">
      <v-tooltip/>
      <v-axis/>
      <v-bar position="x*y" />
    </v-chart>
  </div>
</template>

<script>
  import { triggerWindowResizeEvent } from '@/utils/util'

  export default {
    name: 'Bar',
    props: {
      dataSource: {
        type: Array,
        required: true
      },
      yaxisText: {
        type: String,
        default: 'y'
      },
      height: {
        type: Number,
        default: 254
      }
    },
    
    data() {
      return { 
        padding: ['auto', 'auto', '40', '50'],
        plotOptions: {
            column: {
            pointPadding: 0.2,
            borderWidth: 0,
            pointWidth: 30
            }
            }
      }
    },
    computed: {
      scale() {
        return [{
          dataKey: 'y',
          alias: this.yaxisText
        }]
      }
     
    },
    mounted() {
      triggerWindowResizeEvent()
    }
  }
</script>

如果把这个柱形图的每一条宽度固定 让它变小

barData:【{x:陈天阳,y:100}…】

你是说条形图,宽度固定吗

option = {
    xAxis: {
        type: 'category',
        data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
    },
    yAxis: {
        type: 'value'
    },
    series: [{
        data: [120, 200, 150, 80, 70, 110, 130],
        type: 'bar',
        showBackground: true,
        backgroundStyle: {
            color: 'rgba(180, 180, 180, 0.2)'
        },
        itemStyle:{
             width:"400px",
           
        },
        barWidth:"50px"
    }]
};

 

设置 barWidth试试