Sha256: 034db41c0ff26012a6299d95a735984326f48db5397ed77f968079d55c9bdb84
Contents?: true
Size: 430 Bytes
Versions: 94
Compression:
Stored size: 430 Bytes
Contents
import React from 'react' import { CircleChart } from '../../' 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
94 entries across 94 versions & 1 rubygems