Я переношу проект 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;
Любая помощь будет принята с благодарностью.