general/liquid/liquid-background

Example page

import { Chart } from '@antv/g2';

const chart = new Chart({
  container: 'container',
  autoFit: true,
});

chart.options({
  type: 'liquid',
  data: 0.3,
  style: {
    backgroundFill: 'pink',
  },
});

chart.render();