标签: mpandroidchart
我正在尝试以固定间隔在X轴上显示时间。当前,X轴的行为不像I want it to。我正在尝试间隔5分钟。当我zoom正确地指出时间点时。
答案 0 :(得分:0)
也许您可以使用setGranularity API:
xAxis.setGranularityEnabled(true); xAxis.setGranularity(5 * 60 * 1000); // if time is in ms