I found a solution in png format:
plot = (XYPlot) findViewById(R.id.pot); plot.layout(0, 0, 400, 200); XYSeries series = new SimpleXYSeries(Arrays.asList(array1),Arrays.asList(array2),"series"); LineAndPointFormatter seriesFormat = new LineAndPointFormatter(); seriesFormat.setPointLabelFormatter(new PointLabelFormatter()); plot.addSeries(series, seriesFormat); plot.setDrawingCacheEnabled(true); FileOutputStream fos = new FileOutputStream("/sdcard/DCIM/img.png", true); plot.getDrawingCache().compress(CompressFormat.PNG, 100, fos); fos.close(); plot.setDrawingCacheEnabled(false);
source share