Sha256: 8d0206864ba4e0ade1d8cd09d2742cc55acda2de40a4889623826ecf612a2d84

Contents?: true

Size: 930 Bytes

Versions: 2192

Compression:

Stored size: 930 Bytes

Contents

import React, { useState } from 'react'

import CircleChart from '../_circle_chart'
import Button from '../../pb_button/_button'

const CircleChartLiveData = (props) => {
  const [data, setData] = useState([
    {
      name: 'Waiting for Calls',
      value: 41,
    },
    {
      name: 'On Call',
      value: 49,
    },
    {
      name: 'After call',
      value: 10,
    },
  ])

  const data2 = [
    {
      name: 'Waiting for Calls',
      value: 48,
    },
    {
      name: 'On Call',
      value: 12,
    },
    {
      name: 'After call',
      value: 140,
    },
  ]

  const updateValue = () => {
    setData(data2)
  }

  return (
    <div>
      <Button
          onClick={updateValue}
          text="Update Value"
          {...props}
      />
      <CircleChart
          chartData={data}
          id="circle-chart-live-data"
          {...props}
      />
    </div>
  )
}

export default CircleChartLiveData

Version data entries

2,192 entries across 2,192 versions & 2 rubygems

Version Path
playbook_ui-14.16.0 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.play1949lodashremoval3of36815 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.15.0.pre.alpha.play1949lodashremoval3of36815 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.play1952fixhorizontalnavcursorstyle6795 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.15.0.pre.alpha.play1952fixhorizontalnavcursorstyle6795 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.16.0.pre.rc.6 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.16.0.pre.rc.6 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.play1949lodashremoval3of36758 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.15.0.pre.alpha.play1949lodashremoval3of36758 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.play1949lodashremoval3of36746 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.15.0.pre.alpha.play1949lodashremoval3of36746 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.16.0.pre.rc.5 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.16.0.pre.rc.5 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.PBNTR477draggabledropzone6743 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.15.0.pre.alpha.PBNTR477draggabledropzone6743 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.PBNTR8996733 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.15.0.pre.alpha.PBNTR8996733 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.16.0.pre.rc.4 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui-14.16.0.pre.rc.4 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx
playbook_ui_docs-14.15.0.pre.alpha.PLAY1756pbcontenttagpt76722 app/pb_kits/playbook/pb_circle_chart/docs/_circle_chart_live_data.jsx