viser icon indicating copy to clipboard operation
viser copied to clipboard

alias与color冲突

Open LongYue9608 opened this issue 4 years ago • 1 comments

<template>
  <div>
    <v-chart :forceFit="true" :height="height" :data="data" :scale="scale">
      <v-tooltip />
      <v-legend />
      <v-axis />
      <v-bar position="companyName*price" color="companyName" />
    </v-chart>
  </div>
</template>

<script>

  const data = [{companyName: "链家",price: 5936193.75}];
  const scale = [{
    dataKey: 'price',
    alias: '交易额',
  }];

  export default {
    data() {
      return {
        data,
        scale,
        height: 400,
      };
    }
  };
</script>

LongYue9608 avatar Jan 06 '21 07:01 LongYue9608

不设置color="companyName" v-legend失效,设置了scale别名失效

LongYue9608 avatar Jan 06 '21 07:01 LongYue9608