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.
私はいくつかのグラフを表示するためにachartengineを使用しています。私のアプリでは、各画面に2つのグラフを表示し、凡例がズームボタンと重なっています。ズームボタンのサイズや透明度を変更することはできますか?
ズームボタンを非表示にすることができます。
renderer.setZoomButtonsVisible(false);
または、マージンを増やすことができます。
renderer.setMargins();
ダン