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 来显示一些图表。在我的应用程序中,我在每个屏幕中显示两个图表,图例与缩放按钮重叠。是否可以更改缩放按钮的大小和/或透明度?
您可以隐藏缩放按钮。
renderer.setZoomButtonsVisible(false);
或者您可以增加边距。
renderer.setMargins();
担