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