Sha256: fbe001e2659483e6b52dc3a92edcd70204a0ca2f850573716c2ccadefcaf8d0a
Contents?: true
Size: 649 Bytes
Versions: 11
Compression:
Stored size: 649 Bytes
Contents
import React from "react" import { BarGraph } from "../../" const chartData = [{ name: 'Installation', data: [154175] }, { name: 'Manufacturing', data: [40434] }, { name: 'Sales & Distribution', data: [39387] }, { name: 'Project Development', data: [34227] }, { name: 'Other', data: [18111] }] const BarGraphDefault = () => ( <div> <BarGraph axisTitle="Number of Employees" chartData={chartData} id="bar-test" pointStart={2012} subTitle="Source: thesolarfoundation.com" title="Solar Employment Growth by Sector, 2010-2016" /> </div> ) export default BarGraphDefault
Version data entries
11 entries across 11 versions & 1 rubygems