支付寶圖表antv G2 環形圖 改變顏色
阿新 • • 發佈:2020-07-16
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();
紅色的一段程式碼。解決問題。記錄一下。