Sha256: 692f97842cd953fd99cae2daee94f9f15d54a1ca17ad9d2b5cff723c12b56d62
Contents?: true
Size: 562 Bytes
Versions: 1059
Compression:
Stored size: 562 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 LineGraphLegend = (props) => ( <div> <LineGraph axisTitle="Number of Employees" chartData={data} id="line-test-2" legend title="Line Graph with Legend" xAxisCategories={['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug']} yAxisMin={0} {...props} /> </div> ) export default LineGraphLegend
Version data entries
1,059 entries across 1,059 versions & 2 rubygems