UNPKG

react-jsx-highcharts

Version:

Highcharts charts built using React components

13 lines 365 B
import { memo } from 'react'; import useChartUpdate from '../UseChartUpdate'; const Caption = /*#__PURE__*/memo(props => { useChartUpdate(props, updateCaption, chart => updateCaption(chart, { text: null })); return null; }); const updateCaption = (chart, config) => { chart.setCaption(config); }; Caption.displayName = 'Caption'; export default Caption;