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。一切看起来都很好,但渲染图的线条粗细似乎并不好。我想增加这些图表的厚度。
好的,我得到了答案。它应该如下所示:
int length = renderer.getSeriesRendererCount(); for (int i = 0; i < length; i++) { XYSeriesRenderer seriesRenderer = (XYSeriesRenderer) renderer .getSeriesRendererAt(i); seriesRenderer.setLineWidth(2f); }