Sha256: ed3c974229abe4e8a42c078b2041a9c92780875ef07b1400fc0fa6b63a7fc0da
Contents?: true
Size: 489 Bytes
Versions: 151
Compression:
Stored size: 489 Bytes
Contents
import React from 'react' import { BarGraph } from '../..' const chartData = [{ name: 'Number of Installations', data: [1475, 200, 3000, 654, 656], }] const BarGraphLegend = () => ( <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} /> </div> ) export default BarGraphLegend
Version data entries
151 entries across 151 versions & 1 rubygems