G2PlotBar = {
const container = document.createElement('div');
const data = coffee;
const stackedColumnPlot = new G2Plot.StackColumn(container, {
data,
xField: '饮品',
yField: 'value',
xAxis: false,
yAxis: false,
padding: [20, 20, 100, 50],
stackField: 'type',
interactions: [{ type: 'element-highlight-by-color' }, { type: 'element-link' }],
});
stackedColumnPlot.render();
return container;
}