企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 6.6.2.全部参数 参数名称 | 说明 | 默认值 :--- | :--- | :--- max | 最大值 | value | 当前值 | clockwise | 是否顺时针方向 | true startAngle | 起始角度 | 0 textFormat | 文字样式 | 文字样式: - vertical &emsp; 垂直 - percent &emsp; 百分比 - value &emsp; 只显示值 - valueOnCircle &emsp; 值显示在进度条上 - none &emsp; 不显示文字 自定义文字样式: ```javascript new CircleProgress('#demoProgress9', { max: 12, value: 9, textFormat: function (value, max) { return value + ' dots'; } }); ``` ![](https://s2.ax1x.com/2020/02/07/1c0bKs.png) <br/>