支付宝图表antv G2 环形图 改变颜色
https://g2.antv.vision/zh/examples/pie/donut#donut
看这个
改变这些部位的颜色。困惑了很久,今天找到了.color('item',['#00FF00', '#FFA500', '#FF0000','#0000FF'])
import { Chart } from '@antv/g2'; const data = [ { item: '事例一', count: 40, percent: 0.4 }, { item: '事例二', count: 21, percent: 0.21 }, { item: '事例三', count: 17, percent: 0.17 }, { item: '事例四', count: 13, percent: 0.13 }, { item: '事例五', count: 9, percent: 0.09 }, ]; const chart = new Chart({ container: 'container', autoFit: true, height: 500, }); chart.data(data); chart.scale('percent', { formatter: (val) => { val = val * 100 + '%'; return val; }, }); chart.coordinate('theta', { radius: 0.75, innerRadius: 0.6, }); chart.tooltip({ showTitle: false, showMarkers: false, itemTpl: '<li class="g2-tooltip-list-item"><span style="background-color:{color};" class="g2-tooltip-marker"></span>{name}: {value}</li>', }); // 辅助文本 chart .annotation() .text({ position: ['50%', '50%'], content: '主机', style: { fontSize: 14, fill: '#8c8c8c', textAlign: 'center', }, offsetY: -20, }) .text({ position: ['50%', '50%'], content: '200', style: { fontSize: 20, fill: '#8c8c8c', textAlign: 'center', }, offsetX: -10, offsetY: 20, }) .text({ position: ['50%', '50%'], content: '台', style: { fontSize: 14, fill: '#8c8c8c', textAlign: 'center', }, offsetY: 20, offsetX: 20, }); chart .interval() .adjust('stack') .position('percent') .color('item',['#00FF00', '#FFA500', '#FF0000','#0000FF']) .label('percent', (percent) => { return { content: (data) => { return `${data.item}: ${percent * 100}%`; }, }; }) .tooltip('item*percent', (item, percent) => { percent = percent * 100 + '%'; return { name: item, value: percent, }; }); chart.interaction('element-active'); chart.render();
红色的一段代码。解决问题。记录一下。