Liquid Fill Gauge [Forked from https://gist.github.com/brattonc/5e5ce9beee483220e2f6](https://gist.github.com/brattonc/5e5ce9beee483220e2f6) > optimized for React or Vue It means you can invoke `renderChart()` as many times as you wish. E.g. in `React`: ``` import React, { Component } from 'react' import { renderChart, destroyChart } from '...' class Chart extends Component { ... render () { return
this.$wrapper = el}/> } componentDidUpdate () { renderChart(this.$wrapper, this.props.data) } componentWillUnmount () { destroyChart(this.$wrapper) } ... } ``` E.g. in `Vue`: ``` ```