I am using MPAndroidChart for drawing a Combined graph (with a bar chart and line chart).
I want to display a "Column Range Chart" - a bar chart whose starting point will be variable for each entries, as shown in the below image,
How is it possible to achieve this using MPAndroidChart.
Try with
CandleStickChart
. It's main purpose it to show financial data. Your problem might be with highest/lowest (shadow) open or closing values, it might require to play with them to achieve what you want.A quick sample:
Notice that second/fourth third/fifth parameter in
CandleEntry
constructor are the same to eliminate shadow values.Tutorial on how to use it is here
More info: You might have a problem with drawing vertical data values, this might not be possible.