@elastic/charts
Version:
Elastic-Charts data visualization library
65 lines • 1.93 kB
TypeScript
import type { $Values } from 'utility-types';
import type { PrimitiveValue } from '../chart_types/partition_chart/layout/utils/group_by_rollup';
import type { ScaleOrdinalType, ScaleContinuousType } from '../scales';
/** @public */
export declare const PointerEventType: Readonly<{
Over: "Over";
Out: "Out";
}>;
/** @public */
export type PointerEventType = $Values<typeof PointerEventType>;
/**
* An object that contains the scaled mouse position based on
* the current chart configuration.
* @public
*/
export type ProjectedValues = {
/**
* The independent variable of the chart
*/
x: PrimitiveValue;
/**
* The set of dependent variable, each one with its own groupId
*/
y: Array<{
value: PrimitiveValue;
groupId: string;
}>;
/**
* The categorical value used for the vertical placement of the chart
* in a small multiple layout
*/
smVerticalValue: PrimitiveValue;
/**
* The categorical value used for the horizontal placement of the chart
* in a small multiple layout
*/
smHorizontalValue: PrimitiveValue;
};
/** @public */
export interface BasePointerEvent {
chartId: string;
type: PointerEventType;
}
/**
* Event used to synchronize pointers/mouse positions between Charts.
*
* fired as callback argument for `PointerUpdateListener`
* @public
*/
export interface PointerOverEvent extends BasePointerEvent, ProjectedValues {
type: typeof PointerEventType.Over;
scale: ScaleContinuousType | ScaleOrdinalType;
/**
* Unit for event (i.e. `time`, `feet`, `count`, etc.) Not currently used/implemented
* @alpha
*/
unit?: string;
}
/** @public */
export interface PointerOutEvent extends BasePointerEvent {
type: typeof PointerEventType.Out;
}
/** @public */
export type PointerEvent = PointerOverEvent | PointerOutEvent;
//# sourceMappingURL=settings_types.d.ts.map