Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

mreact graph

function MyChart() {
  const data = React.useMemo(
    () => [
      {
        specialLabel: 'Hello World!',
        data: [
          //...
        ]
      }
    ],
    []
  )
 
  const getLabel = React.useCallback(series => series.specialLabel, [])
 
  return (
    <div
      style={{
        width: '400px',
        height: '300px'
      }}
    >
      <Chart data={data} getLabel={getLabel} />
    </div>
  )
}
Source by www.npmjs.com #
 
PREVIOUS NEXT
Tagged: #mreact #graph
ADD COMMENT
Topic
Name
8+3 =