import { InputField } from "@hpcc-js/common"; import { XYAxis } from "./XYAxis.ts"; import "../src/Scatter.css"; export declare class Scatter extends XYAxis { static __inputs: InputField[]; constructor(); xPos(host: XYAxis, d: any): any; yPos(host: XYAxis, d: any): any; private curve; private getScale; protected pointColor(row: any, col: any, value: any, origRow: any): string; protected lineColor(row: any, col: any, value: any, origRow: any): string; protected areaColor(row: any, col: any, value: any, origRow: any): string; layerEnter(host: XYAxis, element: any, duration?: number): void; protected _prevPointShape: any; layerUpdate(host: XYAxis, element: any, duration?: number): void; exit(domNode: any, element: any): void; } export interface Scatter { valueAnchor(): string; valueAnchor(_: string): this; valueBaseline(): string; valueBaseline(_: string): this; showValue(): boolean; showValue(_: boolean): this; pointDarken(): boolean; pointDarken(_: boolean): this; interpolateDarken(): boolean; interpolateDarken(_: boolean): this; paletteID(): string; paletteID(_: string): this; useClonedPalette(): boolean; useClonedPalette(_: boolean): this; pointSizeScale(): string; pointSizeScale(_: string): this; pointShape(): string; pointShape(_: string): this; pointSize(): number; pointSize(_: number): this; interpolate(): string; interpolate(_: string): this; interpolate_default(): string; interpolate_default(_: string): this; interpolateFill(): boolean; interpolateFill(_: boolean): this; interpolateFill_default(): boolean; interpolateFill_default(_: boolean): this; interpolateFillOpacity(): number; interpolateFillOpacity(_: number): this; fillColor(row: any, column: any, value: any, origRow: any): string; strokeColor(row: any, column: any, value: any, origRow: any): string; textColor(row: any, column: any, value: any, origRow: any): string; dblclick(row: any, column: any, selected: any): void; tooltip: any; tooltipHTML(_: any): string; tooltipFormat(_: any): string; tooltipStyle(): "default" | "none" | "series-table"; tooltipStyle(_: "default" | "none" | "series-table"): this; }