Androidplot从.6.0迁移到1.5.6

时间:2019-03-18 18:31:12

标签: android android-studio-3.0 androidplot

我正在将androidplot项目从.6.0迁移到1.5.6,似乎无法弄清楚以下新方法是什么。

的新类是什么
import com.androidplot.xy.BarRenderer.BarWidthStyle;

此外,以下的新方法是什么

    public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
    View barChartView = inflater.inflate(R.layout.barchart, null);
    plot = (XYPlot)barChartView.findViewById(R.id.mySimpleXYPlot);
    plot.getGraph().setGridPadding(30, 30, 30, 0);
    plot.setTicksPerDomainLabel(1);

    plot.setDomainValueFormat(RANGE_DOMAIN_VALUE_FORMAT);
    plot.setRangeValueFormat(new DecimalFormat("#"));
    plot.getLegend().setVisible(false);
    plot.getGraph().setDomainLabelOrientation(90);
    return barChartView;   

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我觉得你上这堂课是

com.androidplot.xy.BarRenderer.BarGroupWidthMode

我在这里找到它:https://javadoc.io/doc/com.androidplot/androidplot-core/1.5.7

我希望这对您是正确的。

我今天才刚刚从该版本迁移到1.5.7。

此外,格式化所需的呼叫如下:


plot.getGraph().getLineLabelStyle(XYGraphWidget.Edge.BOTTOM).setFormat(new SatelliteNameFormat());
plot.getGraph().setPadding(30, 10, 30, 0);

祝一切顺利!