Package Exports
- @datalith/ripple
- @datalith/ripple/README.md
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@datalith/ripple) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@datalith/ripple
yarn add @datalith/rippleDocs
<Ripple
className="ripple"
width={width}
height={height}
data={data}
center={x: width / 2, y: height / 2}
/>| Name | Default | Type | Description |
|---|---|---|---|
| className | string |
Custom css classes to pass to the SVG | |
| style | React.CSSProperties |
Custom style object to apply to the SVG | |
| width * | number |
Width of the SVG | |
| height * | number |
Height of the SVG | |
| data * | Array<Datum> or Array<number> |
Array of data | |
| value | (Datum) => Datum |
(Datum) => number or number |
Value accessor |
| color | rgb(0,0,0) |
(Datum) => string or string |
Color accessor |
| center | {x: width / 2, y: height / 2} |
{x: number, y: number} |
Center of the dataviz |
| fill | true |
boolean |
Whether to add the fill color |
| stroke | false |
boolean |
Whether to add the stroke color |
| tooltip | (Datum) => string |
Return HTML or text as a string to show on element mouseover |