Sha256: d583be77d46845fb13b4e051933066cefdb6aff74d79bc10a0c86f4b247307eb
Contents?: true
Size: 591 Bytes
Versions: 948
Compression:
Stored size: 591 Bytes
Contents
import React from 'react' import { BarGraph } from 'playbook-ui' 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
948 entries across 948 versions & 2 rubygems