@antv/g2
Version:
the Grammar of Graphics in Javascript
6 lines • 405 B
JavaScript
import { LegendContinuous } from './legendContinuous';
export const LegendContinuousBlock = (options) => {
return (...args) => LegendContinuous(Object.assign({}, { block: true }, options))(...args);
};
LegendContinuousBlock.props = Object.assign(Object.assign({}, LegendContinuous.props), { defaultPosition: 'top', defaultOrientation: 'horizontal' });
//# sourceMappingURL=legendContinuousBlock.js.map