@carto/react-core
Version:
CARTO for React - Core
11 lines (9 loc) • 342 B
TypeScript
import { AggregationTypes } from './constants/AggregationTypes';
import { ScatterPlotFeature } from '../types';
export function scatterPlot(args: {
data: Record<string, unknown>[];
xAxisColumns: string[];
xAxisJoinOperation?: AggregationTypes;
yAxisColumns: string[];
yAxisJoinOperation?: AggregationTypes;
}): ScatterPlotFeature;