svg-progress-bar icon indicating copy to clipboard operation
svg-progress-bar copied to clipboard

:panda_face: A simple,progress bar for Vue.js

Results 11 svg-progress-bar issues
Sort by recently updated
recently updated
newest added

自定义文本格式,是什么原因? ``` svgProgressOption () { let that = this return { radius: 40, circleWidth: this.circleWidthnum, // 没变化 circleLineCap: 'round', pathColors: ['#DDD', '#008FF3'], text: function (value) { console.log(that.AttendanceCounts) // 获取的是原始数据,没有更新 return...

options1: function () { return { // 进度条半径 radius: 50, // 进度条线宽 circleWidth: 6, circleLinecap: 'round', maxValue: 100, text: function (value) { return this.htmlifyNumber(value) + '%'; }, // 进度条文本颜色 textColor:...

value 大于100没有做处理,比如我的value是456666;

Changes `circleLinecap` to `circleLineCap` in the doc. Note: `valAddCalBack` could be better named `valAddCallBack`.

Fix bug when rendering a list of rectangle bar, use the `new Date()` as the id of linearGradient may lead to repetition in this case. #5

I rendered a list of this svg-progress-bar(type="rect", use gradient feature) with different colors, such as these rainbow colors: ![image](https://user-images.githubusercontent.com/8822559/50068481-0db99600-0201-11e9-8362-67d23888abb9.png) But every time Vue render these components, they ware rendered out...

请问,环形进度条是不能设置渐变色吗?