I need to align the center of the items in a RecyclerView that is above my chart with the temperature values of the chart. The problem is that there could be 5 values or 50, and I need them to always align with the center of each item in the RecyclerView. How can I do this?
I have tried with:
lineChart.setVisibleXRangeMaximum(x); lineChart.setVisibleXRangeMinimum(x);
But I haven't had any luck.
