GG

The top-level component and starting point for creating Graphique visualizations.

Pass in data, map data properties to visual properties (aes), and fill with child Geoms to start visualizing data. Configure and customize with a friendly, component-based API.

Example

API

GG(props: RootGGProps) => React.JSX.Element


RootGGPropsinterface

namedescription
data

the data used to create the base, an array of objects

Datum[]
aes

the functional mapping of data characteristics to visual characteristics

Aes
width?

the width of the visualization area in pixels (default: 550)

Use isContainerWidth if you'd like it to be as wide as the parent container.

number
height?

the height of the visualization area in pixels (default: 450)

number
margin?

an object specifying the margins surrounding the visualization area

Margin
isContainerWidth?

when true, the visualization will fill its parent container's width (and respond to changes in its width)

boolean
children?

elements used to specify and configure the visualization (e.g. Geoms, Scales, Labels, Theme, etc.)

React.ReactNode

Aesinterface

namedescription
x

functional mapping to data used to create an x scale

DataValue
y?

functional mapping to data used to create a y scale

DataValue
stroke?

functional mapping to data used to create a stroke scale

DataValue
strokeDasharray?

functional mapping to data used to create a strokeDasharray scale

DataValue
size?

functional mapping to data used to create a continuous size scale

Right now it's only used with <GeomPoint> to create a radius scale for points.

(d: Datum) => number | null | undefined
fill?

functional mapping to data used to create a fill scale

DataValue
group?

functional mapping to data used to create distinct groups explicitly (without an associated scale)

DataValue
label?

functional mapping to data used to label tooltips and text values created with GeomLabel

(d: Datum) => string
key?

functional mapping to data used to distinguish individual data points

(d: Datum) => string

DataValue(d: Datum) => number | string | Date | null | undefined