UNPKG

react-native-charts-wrapper

Version:
15 lines (13 loc) 450 B
import React, {Component} from 'react'; import { UIManager, findNodeHandle} from 'react-native'; export default function HighlightEnhancer(Chart) { return class HighlightExtended extends Chart { highlights(config) { UIManager.dispatchViewManagerCommand( findNodeHandle(this.getNativeComponentRef()), UIManager.getViewManagerConfig(this.getNativeComponentName()).Commands.highlights, [config] ); } } }