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
RootGGProps
interface
name | description |
---|---|
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: Use number |
height? | the height of the visualization area in pixels (default: 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 |
Aes
interface
name | description |
---|---|
x | functional mapping to DataValue |
y? | functional mapping to DataValue |
stroke? | functional mapping to DataValue |
strokeDasharray? | functional mapping to DataValue |
size? | functional mapping to Right now it's only used with (d: Datum) => number | null | undefined |
fill? | functional mapping to DataValue |
group? | functional mapping to DataValue |
label? | functional mapping to (d: Datum) => string |
key? | functional mapping to (d: Datum) => string |