We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
series:[ { type: 'bar', stack: 'Total', itemStyle: { borderRadius: [4, 4, 4, 4], // 圆柱 color: function (params) { //首先定义一个数组 const colorList = [ { x: 0, y: 1, x2: 0, y2: 0, colorStops: [{ offset: 0, color: '#3BABFF' // 0% 处的颜色 }, { offset: 1, color: '#7548FF' // 100% 处的颜色 }], global: false // 缺省为 false }, "#514FA4", "#373948"]; if (params.data.type == "达标") { return colorList[0] } else if (params.data.type == "未达标") { return colorList[1] } else { return colorList[2] } }, }, } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: