UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

9 lines 295 B
import { Color } from './color'; /** * ● */ export const Point = (options, context) => { return Color(Object.assign({ colorAttribute: 'fill', symbol: 'point' }, options), context); }; Point.props = Object.assign({ defaultMarker: 'point' }, Color.props); //# sourceMappingURL=point.js.map