Sha256: 73193e394c6469dba4adf4815d8575a189f895efcc7f9d0c8b2ff68c4d43165a
Contents?: true
Size: 437 Bytes
Versions: 1919
Compression:
Stored size: 437 Bytes
Contents
import React from 'react' import CircleChart from '../_circle_chart' const dataWithLegend = [{ name: 'Bugs', value: 8, }, { name: 'Chores', value: 1, }, { name: 'Stories', value: 12, }, ] const CircleChartWithLegendKit = (props) => ( <div> <CircleChart chartData={dataWithLegend} id="with-legend-example" legend {...props} /> </div> ) export default CircleChartWithLegendKit
Version data entries
1,919 entries across 1,919 versions & 2 rubygems