@keen.io/widgets
v2.18.11
Published
Keen widgets
Downloads
763
Keywords
Readme
@keen.io/widgets
The @keen.io/widgets
package is a higher visualization layer that connects @keen.io/charts
with other components
that could be used to interact with charts plots.
Installing
For Front-End applications use standard npm
or yarn package manager.
yarn add @keen.io/widgets
Examples
import { FunnelChartWidget } from '@keen.io/widgets';
const chartData = [
{ name: 'Emails', value: 17000 },
{ name: 'Visits', value: 13050 },
{ name: 'Logins', value: 5900 },
{ name: 'Purchases', value: 4021 },
{ name: 'Payments', value: 3011 },
];
<FunnelChartWidget data={chartData} labelSelector="name" />
For more examples check the Keen Storybook.