Moneybag 3.2 is released

Moneybag 3.2 is released. You may download apk file and install it. Now, you can manage all of your money transactions, more information…

What’s new
1. Added a login password to protect your money transaction.
2. Added a default bag, it can view money transaction of default bag in “Money Item”.
3. Improved the function of charting, it can generate money balance chart and money transaction chart.

kiChart 0.3 is released

Android Chart Library – kiChart
Version: 0.3
Date: 2011-07-30

[IMPROVED]Improved the y-axis top value as the maximum value, except you’ve assigned the yAxisRegionStart value.
[IMPROVED]Improved the y-axis value as float type.
[ADDED] Added two properties, yAxisRegionStart and yAxisRegionEnd. Shows y-axis value start form yAxisRegionStart and end by yAxisRegionEnd.

kiChart 0.3 is released. You may download jar file, developer guide and create your android chart applications, more information…

How to export chart as image in kiChart

Exporting chat as image file, it’s easy to finish this work in kiChart.

Sample code:

public class LineChart extends ChartActivity

private static final int EXPORT_ID = Menu.FIRST + 1;
LineView lv = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Create the chat code
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
boolean result = super.onCreateOptionsMenu(menu);
menu.add(0, EXPORT_ID, 0, "Export image");
return result;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case EXPORT_ID:
boolean r = lv.exportImage("hello.png");
if (r == true)
Toast.makeText(LineChart.this, "Export image file successfully!", Toast.LENGTH_LONG).show();
else
Toast.makeText(LineChart.this, "Export image file unsuccessfully!", Toast.LENGTH_LONG) .show();
return true;
}
return super.onOptionsItemSelected(item);
}

}

How to view CSV file exported by Moneybag on PC

Moneybag export data function will export CSV file under “Moneybag” folder on sdcard, you can view it on PC. But, sometimes it shows messy code of non-english (such as chinese ) opened by Microsoft Excel.

i think the messy code problem is handled by EXCEL aspect, the follow steps to help you to open CSV normally.

1.  Rename .csv file as .txt file

2. Import .txt file by Excel

- Open Excel 2007

- Open a new file

- Click the Data Menu option

- Click “From Text” button

- Select the file you downloaded

- Make sure “Delimited” is selected and Press Next

- Make sure “File origin” is set on Unicode (UTF-8) and Press Next

- Press Next

- Check the delimiter characters that you know are in your file like Comma or Tab or whatever is inyour case. You can select more than one10. – Proceed to Next Step and Finish11. – Your excel file will be ready with all you data displayed correctly :)

Download import CSV manual