有人能告訴我如何從軸標籤中刪除小數點嗎?而不是10.0,我想只有10個顯示。core-plot從軸標籤中刪除小數點
4
A
回答
1
將軸上的labelFormatter
屬性設置爲新的格式器。這是一個標準的NSNumberFormatter對象。有關可用選項的詳細信息,請參閱Apple's class documentation。
11
CPTXYAxis *x = axisSet.xAxis;
NSNumberFormatter *Xformatter = [[NSNumberFormatter alloc] init];
[Xformatter setGeneratesDecimalNumbers:NO];
[Xformatter setNumberStyle:NSNumberFormatterDecimalStyle];
x.labelFormatter = Xformatter;
[Xformatter release];
這將處理x軸上的小數點以及在NSNumberFormatterDecimalStyle中添加逗號。您需要對y軸執行相同的操作。
有一噸的東西,你可以用NSNumberFormatter做,包括使用數字轉換成美元:
[Xformatter setNumberStyle:NSNumberFormatterCurrencyStyle];
//this will add a decimal point again if you put this in the code above
玩的Esc鍵來查看所有格式可供setNumberStyle或其他方法。
+1
+1感謝您的解釋 – Saawan
相關問題
- 1. Coreplot - 軸標籤的座標和大小
- 2. jqPlot:從x軸刪除小數點
- 3. Coreplot中的軸標籤修改
- 4. coreplot中的x軸標籤不顯示
- 5. GGPLOT2刪除軸標籤
- 6. 如何刪除Highcharts中沒有數據點的軸標籤?
- 7. Coreplot:軸標籤固定位置
- 8. vtkAxis - 從軸符號中刪除小數點
- 9. Python - 刪除軸刻度標籤,保留刻度和軸標籤
- 10. 在CorePlot中更改座標軸上的數字大小
- 11. 在MATHEMATICA中刪除Z軸中數字的小數點嗎?
- 12. 從HtmlTextWriter中刪除標籤
- 13. 從Location.Hash中刪除標籤
- 14. 刪除y軸標籤對象
- 15. 從字符串中刪除小數點
- 16. 試圖從NSString中刪除小數點
- 17. 從貨幣中刪除小數點
- 18. 從json數據中刪除xml標籤
- 19. 如何從標籤中刪除數據
- 20. nvd3:從離散條形圖中刪除y軸刻度標籤
- 21. 如何從該圖表中刪除X軸標籤?
- 22. 從盒子圖組中刪除冗餘X軸標籤
- 23. 從樹狀圖中刪除x軸標籤r
- 24. 從小數點變量中刪除小數點(如果有).00
- 25. 標籤中的小數點
- 26. 嘗試從UISlider和文本標籤中移除小數點
- 27. 刪除圖像中的小塊標籤
- 28. 刪除對數圖中的特定x軸刻度標籤,matplotlib
- 29. 刪除matplotlib中x軸時間標籤的秒數
- 30. 如何更改CorePlot中軸標籤的精度?
這樣做伎倆謝謝! – Chris
您提供的鏈接中沒有lableFormatter參考 –