import 'react'; import { Column } from '@antv/g2plot/lib/plots/column'; import createPlot from '../createPlot'; import warn from 'warning'; import { deepMix } from '@antv/util'; import { ColumnOptions, polyfill } from './ColumnChart'; interface StackedColumnOptions extends ColumnOptions {}; export { StackedColumnOptions }; export default createPlot(Column, 'StackedColumnChart', props => { warn(false, '即将在5.0中废弃,请使用替代。'); deepMix(props, { isStack: true, }); return polyfill(props); });