Charting API TeeChart

Action: 
com.steema.teechart.android.CHART
Input: 
URI: "content:", "file:", "http:", "https:" MIME TYPE: "text/plain", "text/xml"
Output: 
Charts are created and returned to your Activity as Android Bitmap (PNG, JPEG) images.

TeeChart CHART Intent enables your application creating charts without having to link the complete TeeChart API Java library.

Data, text, formatting and styles can be submitted using the Intent putExtras method or in plain text or xml formats.

final Intent intent = new Intent("com.steema.teechart.android.CHART");
intent.setType("text/*");

intent.putExtra("Header", "Hello World !");
intent.putExtra("Style", "Bar");
intent.putExtra("Text", new String[] { "A", "B", "C" });
intent.putExtra("Values", new double[] { 45, 23, 12 });

try {
startActivityForResult(intent, 0);
} catch (ActivityNotFoundException e) {
ChartIntent.downloadTeeChart(this);
}