fusioncharts / react-fusioncharts-component

ReactJS component for FusionCharts JavaScript Charting library.
https://fusioncharts.github.io/react-fusioncharts-component/
MIT License
93 stars 33 forks source link

When there are two points with the same value, the label is overlapping each other #63

Closed RodolfoE closed 3 years ago

RodolfoE commented 3 years ago

here is an exemple showing the error https://github.com/RodolfoE/errorOnReactFc Capturar

RodolfoE commented 3 years ago

Capturar

AyanBhadury commented 3 years ago

@RodolfoE If you have two plots with almost similar values then the labels may overlap to resolve the problem use valuePosition attribute at the data level to fix the problem - http://jsfiddle.net/f0q2g1ue/

"data": [{ "value": "15123", valuePosition:"ABOVE" }]