i am trying to make a pyramid population in flutter dart. i try a tricky way by using stacked bar chart while i make one series data in 'negative' (actually it's a positive number) is there any way to make axis value and data label looks positive (while actually it's a negative number). Or there is another way to create Pyramid Population with Synfusion chart in fultter dart?
what i'm expecting: enter image description here
The tornado chart a specialized type of the barseries in Charts. The requirement can be achieved by setting the enableSideBySideSeriesPlacement to false and removing the negative sign in the axisLabelFormatter and onDataLabelRender callbacks.
Output:
Tornado chart
Added code snippet below for your reference.