Sha256: 9a16c45f77b3c231495aff5db08b20e158fc1f191302f10aad3a446490ca4dd3
Contents?: true
Size: 613 Bytes
Versions: 1065
Compression:
Stored size: 613 Bytes
Contents
import React from 'react' import { LineGraph } from '../..' 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,065 entries across 1,065 versions & 2 rubygems