Sha256: adea6c2087961144cf15b5a333221251e751b9e8dae1b8eb91da08359ce15f57
Contents?: true
Size: 534 Bytes
Versions: 1721
Compression:
Stored size: 534 Bytes
Contents
import React from 'react' import CircleChart from '../_circle_chart' const data = [ { name: 'Waiting for Calls', value: 41, }, { name: 'On Call', value: 49, }, { name: 'After call', value: 10, }, ] const CircleChartCustomTooltip = (props) => ( <div> <CircleChart chartData={data} id="circle-chart-default" tooltipHtml= '<p>Custom tooltip for {point.name} <br/>with value: {point.y}</p>' {...props} /> </div> ) export default CircleChartCustomTooltip
Version data entries
1,721 entries across 1,721 versions & 2 rubygems