I'm trying to use the following react-native-echarts-wrapper but in my projects all my components are made using hooks. So, when I have a state variable that changes its state I want to execute the function setOption(option)
where the option contains the state value.
The problem is that in the documentation the function setOption()
is referenced using this.chart.setOption(option)
. If I try to put without the this.
I get a message where chart
is undefined and if I only use function I get the message saying that setOption is not a function
.
So is there a way to get the reference of the chart component and its functions using RN Hooks?
Here is my code:
const [radarChartData, setRadarChartData] = React.useState([])
const option = {
title: {
show:false,
text: 'Gráfico Radar'
},
tooltip: {},
legend: {
orient: 'horizontal',
position:'bottom',
left: 0,
bottom:0,
type:'scroll',
pageButtonPosition:'end',
data: chartColumnNameArray,
},
radar: {
radius:'70%',
name: {
textStyle: {
color: '#fff',
backgroundColor: '#999',
borderRadius: 3,
padding: [3, 5]
}
},
indicator: chartValueArray.map((item, index)=>{
return {name:chartColumnNameArray[index].toUpperCase().substring(0,5).concat('.'), max:maxValue}
})
},
series: [{
name: 'TEST',
type: 'radar',
data: radarChartData <------------------- //when this state changes I would setOptions and reload chart
}]
};
<View style={{display: visibleChart==="radarchart"?"flex":"none", width:'100%', height:'60%'}} >
<ECharts option={option} additionalCode={React.useEffect(()=>{this.chart.setOption(option)},[radarChartData])}/>
</View>
You will have to use the 'useRef' hook to get access to the chart, even in the examples that are provided they use a reference to the chart and update it. I've made a basic example to change the background color which will give you the idea on how use the hook with the charts. Simply set the ref and use chart.current instead of this.chart.