Sha256: 06362497a9dca1f4523fbbf32def0465d590789878755f0ad43745e25c432130
Contents?: true
Size: 568 Bytes
Versions: 948
Compression:
Stored size: 568 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 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
948 entries across 948 versions & 2 rubygems