arc.js 284 B

1234567891011
  1. import { Arc as ArcLayout } from '../data/utils/arc';
  2. /**
  3. * For arc diagram(edge with weight) or chord diagram(with weight)
  4. */
  5. export const Arc = (options) => {
  6. return (data) => {
  7. return ArcLayout(options)(data);
  8. };
  9. };
  10. Arc.props = {};
  11. //# sourceMappingURL=arc.js.map