Sha256: 57aa91d7577124b1edd17282f53c38d8ee793d07c49540f74caa9c214f65528a
Contents?: true
Size: 589 Bytes
Versions: 146
Compression:
Stored size: 589 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 = () => ( <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']} /> </div> ) export default LineGraphLegendNonclickable
Version data entries
146 entries across 146 versions & 1 rubygems