Skip to main content

ScatterChart

Scatter Chart component for correlation and distribution visualization.

Example

"use client";

import { ScatterChart } from "@databricks/appkit-ui/react";

export default function ScatterChartExample() {
return (
<ScatterChart
data={[
{ revenue: 100, growth: 5 },
{ revenue: 200, growth: 10 },
{ revenue: 150, growth: 7 },
{ revenue: 300, growth: 15 },
{ revenue: 250, growth: 12 },
{ revenue: 400, growth: 20 },
{ revenue: 180, growth: 8 },
{ revenue: 320, growth: 16 },
]}
xKey="revenue"
yKey="growth"
height={300}
/>
);
}

ScatterChart

Scatter Chart component for correlation and distribution visualization.

Important: This component uses Apache ECharts architecture. Configure it via props, not by passing child components.

Best Practice: Use the built-in data fetching by passing queryKey and parameters props instead of pre-fetching data with useAnalyticsQuery.

Supports both query mode (queryKey + parameters) and data mode (static data).

Source: packages/appkit-ui/src/react/charts/scatter/index.tsx

Props

PropTypeRequiredDefaultDescription
queryKeystring-Analytics query key registered with analytics plugin
parametersRecord<string, unknown>-Query parameters passed to the analytics endpoint
formatenum"auto"Data format to use - "json": Use JSON format (smaller payloads, simpler) - "arrow": Use Arrow format (faster for large datasets) - "auto": Automatically select based on expected data size
transformer(<T>(data: T) => T)-Transform raw data before rendering
dataChartData-Arrow Table or JSON array
titlestring-Chart title
showLegendboolean-Show legend
colorPaletteenum-Color palette to use. Auto-selected based on chart type if not specified. - "categorical": Distinct colors for different categories (bar, pie, line) - "sequential": Gradient for magnitude/intensity (heatmap) - "diverging": Two-tone for positive/negative values
colorsstring[]-Custom colors for series (overrides colorPalette)
heightnumber300Chart height in pixels
classNamestring-Additional CSS classes
xKeystring-X-axis field key. Auto-detected from schema if not provided.
yKeystring | string[]-Y-axis field key(s). Auto-detected from schema if not provided.
ariaLabelstring-Accessibility label for screen readers
testIdstring-Test ID for automated testing
optionsRecord<string, unknown>-Additional ECharts options to merge
symbolSizenumber8Symbol size

Usage

import { ScatterChart } from '@databricks/appkit-ui';

<ScatterChart /* props */ />