AndroidPlot 仍然重叠图例
AndroidPlot remains overlapping legend
目前,我正在重叠我的情节,它显示为 link
https://www.dropbox.com/s/yaktr3ew2h4s6i6/Screenshot%202018-03-08%2011.26.52.jpg?dl=0
我已经阅读了大部分带有解决方案的线程,但我的图例仍然保持不变。以下是我尝试过的方法:
XYLegendWidget legendPlot = plot.getLegend();
legendPlot.position(150, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 10, VerticalPositioning.ABSOLUTE_FROM_BOTTOM);
plot.setLegend(legendPlot); //with or without remain the same as well
XYLegendWidget legendWidget2 = plot2.getLegend();
legendWidget2.position(100, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM);
plot2.setLegend(legendWidget2);
plot.getLegend().position(150, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM, Anchor.RIGHT_BOTTOM);
plot2.getLegend().position(100, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM, Anchor.RIGHT_BOTTOM);
我只想将两个图例并排放置而不重叠。
有很多试用版。最后,我设法解决了我的问题。以下代码是在您想要的情节下放入 XML
的解决方案。
ap:legendAnchor="right_bottom"
ap:legendHorizontalPositioning="absolute_from_right"
ap:legendHorizontalPosition="-10dp"
ap:legendVerticalPositioning="relative_from_bottom"
ap:legendVerticalPosition="0dp"
这是image
目前,我正在重叠我的情节,它显示为 link https://www.dropbox.com/s/yaktr3ew2h4s6i6/Screenshot%202018-03-08%2011.26.52.jpg?dl=0
我已经阅读了大部分带有解决方案的线程,但我的图例仍然保持不变。以下是我尝试过的方法:
XYLegendWidget legendPlot = plot.getLegend();
legendPlot.position(150, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 10, VerticalPositioning.ABSOLUTE_FROM_BOTTOM);
plot.setLegend(legendPlot); //with or without remain the same as well
XYLegendWidget legendWidget2 = plot2.getLegend();
legendWidget2.position(100, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM);
plot2.setLegend(legendWidget2);
plot.getLegend().position(150, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM, Anchor.RIGHT_BOTTOM);
plot2.getLegend().position(100, HorizontalPositioning.ABSOLUTE_FROM_RIGHT, 0, VerticalPositioning.ABSOLUTE_FROM_BOTTOM, Anchor.RIGHT_BOTTOM);
我只想将两个图例并排放置而不重叠。
有很多试用版。最后,我设法解决了我的问题。以下代码是在您想要的情节下放入 XML
的解决方案。
ap:legendAnchor="right_bottom"
ap:legendHorizontalPositioning="absolute_from_right"
ap:legendHorizontalPosition="-10dp"
ap:legendVerticalPositioning="relative_from_bottom"
ap:legendVerticalPosition="0dp"
这是image