@graphique/geom-point
For points, scatterplots, and bubbles in Graphique.
Install
npm install @graphique/geom-point # @graphique/graphique is a peer dependency
Examples
Basics
Categorical fill
Continuous fill
Sized points
API
GeomProps
interface
name | description |
---|---|
data? | data used by this Geom This will overwrite top-level Datum[] |
aes? | functional mapping applied to This extends the top-level GeomAes |
attr? | attributes passed to the underlying SVG elements React.SVGAttributes |
showTooltip? | should this Geom have a tooltip associated with it (default: boolean |
brushAction? | determines what happens when brushing (clicking and dragging) over the drawing area BrushAction.ZOOM |
entrance? | where elements should start as they enter the drawing area (default: Entrance |
isClipped? | should elements be strictly clipped at the bounds of the drawing area (default: boolean |
focusedKeys? | array of keys (of the kind that are generated by string[] |
focusedStyle? | styles applied to focused elements React.CSSProperties |
unfocusedStyle? | styles applied to unfocused elements React.CSSProperties |
onDatumFocus? | callback called for mousemove events on the drawing area when focusing data (data: Datum[], index: number[]) => void |
onDatumSelection? | callback called for click events on the drawing area when selecting focused data (data: Datum[], index: number[]) => void |
onExit? | callback called for mouseleave events on the drawing area () => void |
isAnimated? | should elements enter/update/exit with animated transitions (default: boolean |
LegendProps
interface
name | description |
---|---|
title? | title of legend React.ReactNode |
orientation? | determines vertical/horizontal orientation of categorical legend members (default: LegendOrientation |
format? | function for formatting legend member labels (categorical) or tick labels (continuous) (v: string, i: number) => string |
width? | width of continuous legend in pixels (default: number |
numTicks? | approximate number of ticks for continuous legend (default: number |
onSelection? | callback called for click events on legend members (v: string) => void |
style? | additional styles passed to legend container React.CSSProperties |
SizeLegendProps
interface
name | description |
---|---|
title? | title of legend React.ReactNode |
labelDirection? | which side of legend to draw labels (default: SizeLabelDirection |
numCircles? | number of circles to use as references in legend (default: 2 | 3 |
radiiVals? | fixed breakpoints within size range for circle references (takes precedence over [number, number, number] | [number, number] |
format? | function for formatting labels (v: number, i: number) => string |
width? | width of legend in pixels (default: number |
style? | additional styles passed to legend container React.CSSProperties |