cell.d.ts 371 B

123456789
  1. import { MarkComponent as MC } from '../runtime';
  2. import { CellMark } from '../spec';
  3. export type CellOptions = Omit<CellMark, 'type'>;
  4. /**
  5. * Convert value for each channel to Cell shapes.
  6. * Calc the bbox of each Cell based on x, y and r.
  7. * This is for allowing their radius can be affected by coordinate(e.g. fisheye).
  8. */
  9. export declare const Cell: MC<CellOptions>;