DataV-Team / DataV

Vue数据可视化组件库(类似阿里DataV,大屏数据展示),提供SVG的边框及装饰、图表、水位图、飞线图等组件,简单易用,长期更新(React版已发布)
http://datav.jiaminghi.com
MIT License
9.09k stars 1.79k forks source link

老大,数字翻牌器的数字能否设置渐变色呀? #80

Closed zzzttt1017 closed 4 years ago

zzzttt1017 commented 4 years ago

Feature request

这个特性解决了什么问题?

数字翻牌器的数字不能设置渐变色

xixileng commented 4 years ago

可以设置的,你应该是渐变的坐标设置的不对,可以参考下我刚写的示例:

<template>
  <dv-digital-flop :config="config" style="width:200px;height:50px;"/>
</template>

<script>

export default {
  data () {
    return {
      config: {
        number: [100],
        content: '{nt}个',
        style: {
          gradientParams: [50, 0, 150, 50],
          gradientColor: ['red', 'green', 'blue'],
          gradientWith: 'fill'
        }
      }
    }
  }
}
</script>