Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Androidのすべてのバーに表示されるバーチャートの各値のテキストを削除したいのですが、achartengineを使用しています。わからない場合は、下の図を見てください。
大変感謝して私を助けてください。
チャートの値を非表示にする必要があります。
renderer.setDisplayChartValues(false);
または、への参照がある場合XYMultipleSeriesRenderer:
XYMultipleSeriesRenderer
int length = renderer.getSeriesRendererCount(); for (int i = 0; i < length; i++) { renderer.getSeriesRendererAt(i).setDisplayChartValues(false); }