長紅線(限行),我使用MPAndroidChart
庫版本2.2.4
。我的要求是我想設置一個BarChart
三個標記線,值「最低」,「平均值」和「最大值」像下面的圖片,但我找不到這方面的任何解決方案。如何創建MPAndroidChart
3
A
回答
0
你應該看看YAxisValueFormatter
。
只需實現接口並將其設置爲y軸的值格式化程序。也就是說,你從chart.getAxisLeft()
獲得的軸。
3
在MPAndroidChart 3.xx的你所要求的被稱爲LimitLine
還有就是如何來使用它在sample project一個例子:
LimitLine ll1 = new LimitLine(150f, "Upper Limit");
ll1.setLineWidth(4f);
ll1.enableDashedLine(10f, 10f, 0f);
ll1.setLabelPosition(LimitLabelPosition.RIGHT_TOP);
ll1.setTextSize(10f);
ll1.setTypeface(tf);
YAxis leftAxis = mChart.getAxisLeft();
leftAxis.removeAllLimitLines(); // reset all limit lines to avoid overlapping lines
leftAxis.addLimitLine(ll1);
如果你需要一個定製的限行,你將不得不看說明書中this question here
相關問題
- 1. 如何創建mpandroidchart
- 2. MPAndroidChart:如何創建雙軸?
- 3. MPAndroidChart:如何創建分組BarChart?
- 4. 如何用MPAndroidChart創建帶分組條形圖的BarChart?
- 5. MPAndroidChart:
- 6. 是否可以使用MPAndroidChart創建多色(堆疊)條形圖?
- 7. 使用雙值創建帶有MPAndroidChart的條形圖
- 8. MPAndroidChart:創建一個封閉的圖表(圓線圖)
- 9. 在MPAndroidChart
- 10. MPAndroidChart MarkerView
- 11. MPAndroidChart Android Studio錯誤,同時構建APK
- 12. MPAndroidchart如何在MarkerView中顯示標籤?
- 13. MPAndroidChart - 我如何避免「-0」值表示
- 14. 如何刪除MPAndroidChart中的舊數據?
- 15. 如何使MPAndroidChart背景像這樣?
- 16. 如何在MPAndroidChart中使用setLabelCount(...)?
- 17. MPAndroidChart - 如何在縮放時更改ValueFormatter?
- 18. 如何在MPAndroidChart中隱藏圖例?
- 19. 有誰知道如何使用MPAndroidChart?
- 20. MPAndroidChart - 如何更改顏色的價值?
- 21. MPAndroidChart:如何取消投擲事件?
- 22. MPAndroidChart PieChart如何設置標籤文字?
- 23. 如何在MPAndroidChart上設置顏色?
- 24. 使用MPAndroidChart
- 25. MpAndroidChart。 BarChart to cloud
- 26. MPAndroidChart洗滌?
- 27. MPAndroidChart PieChart角度
- 28. MPAndroidChart內HorizontalScrollView
- 29. MPAndroidChart BarChart崩潰
- 30. MPAndroidChart:在BARCHART
我的要求是不是格式化拉布勒值... –
?您特別提到了如何在y軸上設置標籤。爲了使它更清楚,您的格式將回到4倍不同的值:「最大」,「最小」,「平均」和「」(空字符串)。在格式化,則需要邏輯返回「max」,這時你遇到的最大值等等...如果它仍然沒有任何意義,編輯你的問題,並納入你的工作代碼塊,這樣的東西可以算出。 –
請像我重視,如果你得到了我的問題,並有解決方案那麼這將是偉大的.. –