Sha256: 8ee9dc7c266de99e453ff95c2ca529491822854feb1f1b5e27541db80e637342
Contents?: true
Size: 519 Bytes
Versions: 948
Compression:
Stored size: 519 Bytes
Contents
import React from 'react' import { BarGraph } from 'playbook-ui' const chartData = [{ name: 'Number of Installations', data: [1475, 200, 3000, 654, 656], }] const BarGraphLegend = (props) => ( <div> <BarGraph axisTitle="Number of Employees" chartData={chartData} id="bar-test-2" legend title="Bar Graph with Legend" xAxisCategories={['Jan', 'Feb', 'Mar', 'Apr', 'May']} yAxisMin={0} {...props} /> </div> ) export default BarGraphLegend
Version data entries
948 entries across 948 versions & 2 rubygems