Sha256: 412fe014be3db8cca16d7298464a107f33641dfeb9037247f05cb0b69712e347
Contents?: true
Size: 619 Bytes
Versions: 1007
Compression:
Stored size: 619 Bytes
Contents
import React from 'react' import { LineGraph } from 'playbook-ui' const data = [{ name: 'Number of Installations', data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175], }] const LineGraphLegendNonclickable = (props) => ( <div> <LineGraph axisTitle="Number of Employees" chartData={data} id="line-test-3" legend title="Line Graph with Legend Non Clickable" toggleLegendClick={false} xAxisCategories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug']} {...props} /> </div> ) export default LineGraphLegendNonclickable
Version data entries
1,007 entries across 1,007 versions & 2 rubygems