Hello,
I've got a gauge chart setup like this:
const chartStyle = {
height: 112.5,
}
return <div style={{width: "250px"}}>
<GaugeChart
style={chartStyle}
nrOfLevels={3}
arcsLength={arcLengths}
colors={colours}
hideText={true}
percent={gaugePerc}
arcPadding={0.05}
cornerRadius={1}
/>
</div>
The value changes from 0, to another value for example 0.7 after an API call returns some data.
I'm seeing an issue where when the gauge changes to another value, the chart does not animate to it at first (it just jumps straight there), before then animating from 0 to it.
See GIF of the issue
Hello,
I've got a gauge chart setup like this:
The value changes from 0, to another value for example 0.7 after an API call returns some data.
I'm seeing an issue where when the gauge changes to another value, the chart does not animate to it at first (it just jumps straight there), before then animating from 0 to it.
See GIF of the issue