WE are working on an project to create trading platform i am in need to replicate this chart we used on react on flutter. Need to create chart like this on flutter we have used syncfusion and explored suncfusion charts and we are not yet got an way to exactly replicate the chart
SUMIMASEN
We tried flutter syncfusion and flutter charts but unable to replicate the exact design for the chart on flutter
You can achieve the mentioned requirements by using combinations of the Area Series, Line Series, and Spline Series to render the series as expected. Additionally, you can use the plotBands property of the primaryXAxis to render the column type box in the background and to render the green line. To render the Area Series and Line Series with two different colors based on the 0th value of the y axis, you can use the onCreateShader property to add a gradient according to your needs. It is important to note that there is no option to render the opposed x axis as mentioned in the provided snapshot, as the tick lines for the axis will be rendered from the start to the end of the axis and the position of the tick line cannot be changed.
However, we have used the CustomPaint widget to render the four tick lines and their text values along with the chart title at the specified location based on the width and height of the chart area. We have also used the title property of both the x and y axis to display the title of their respective axes.
Snapshot: replicated chart