import type { ScatterChartProps as ScatterChartPropsPreact } from '@sisense/sdk-ui-preact'; import type { PropType } from 'vue'; /** * Props of the {@link @sisense/sdk-ui-vue!ScatterChart | `ScatterChart`} component. */ export interface ScatterChartProps extends ScatterChartPropsPreact { } /** * A Vue component displaying the distribution of two variables on an X-Axis, Y-Axis, * and two additional fields of data that are shown as colored circles scattered across the chart. * * **Point**: A field that for each of its members a scatter point is drawn. The maximum amount of data points is 500. * * **Size**: An optional field represented by the size of the circles. * If omitted, all scatter points are equal in size. If used, the circle sizes are relative to their values. * * @example * Here's how you can use the ScatterChart component in a Vue application: * ```vue * * *