A simple vertical bar chart.
import React from 'react';
import ReactDOM from 'react-dom';
import { DiscreteBarChart } from '@panorama/toolkit';
let discreteBarChartConfig = {
data: [
{ key: 'red', value: 20 },
{ key: 'blue', value: 40 },
{ key: 'green', value: 10 }
],
width: 400,
height: 400
// Optionally specify custom margins
margin: { top: 10, right: 10, bottom: 10, left: 10 },
// Optionally specify accessors to match your data format
xAccessor: d => d.key,
yAccessor: d => d.value
};
ReactDOM.render(<DiscreteBarChart {...discreteBarChartConfig}/>, document.body);