Sha256: 44d65369cf5753554cddc478a9718f4c21d7d2e7a05c4c3f7fe3845127d60883
Contents?: true
Size: 585 Bytes
Versions: 1065
Compression:
Stored size: 585 Bytes
Contents
import React from 'react' import { BarGraph } from '../..' const chartData = [{ name: 'Number of Installations', data: [1475, 200, 3000, 654, 656], }] const BarGraphLegendNonClickable = (props) => ( <div> <BarGraph axisTitle="Number of Employees" chartData={chartData} id="bar-test-3" legend title="Bar Graph with Legend Non Clickable" toggleLegendClick={false} xAxisCategories={['Jan', 'Feb', 'Mar', 'Apr', 'May']} yAxisMin={0} {...props} /> </div> ) export default BarGraphLegendNonClickable
Version data entries
1,065 entries across 1,065 versions & 2 rubygems