ant-design-charts
ant-design-charts copied to clipboard
👑 [需求] Change color in Column chart by value
🥰 需求描述 [详细地描述需求,让大家都能理解]
Example I have data like this:
const data = [
{
type: '1-3秒',
value: 0.16,
},
{
type: '4-10秒',
value: 0.25,
},
]
I want to change color column by value in Column component from '@ant-design/plots' using config like below:
const config = {
data,
xField: 'type',
yField: 'value',
color: ({value}) => {
if (value<0.2) {
return '#F4664A';
}
return '#5B8FF9';
},
}