Skip to content
Snippets Groups Projects
Commit cffc96d9 authored by Tim Molter's avatar Tim Molter
Browse files

updates

parent f8508637
Branches
Tags
No related merge requests found
...@@ -22,11 +22,14 @@ Usage is very simple: Create a Chart instance, add a series of data to it, and e ...@@ -22,11 +22,14 @@ Usage is very simple: Create a Chart instance, add a series of data to it, and e
// Save it // Save it
BitmapEncoder.savePNG(chart, "./Sample_Chart.png"); BitmapEncoder.savePNG(chart, "./Sample_Chart.png");
// or save it in high-res
BitmapEncoder.savePNGWithDPI(chart, "./Sample_Chart_300_DPI.png", 300);
Now go ahead and [study some more examples](http://xeiam.com/xchart_examplecode.jsp), [download the thing](http://xeiam.com/xchart_changelog.jsp) and [provide feedback](https://github.com/timmolter/XChart/issues). Now go ahead and [study some more examples](http://xeiam.com/xchart_examplecode.jsp), [download the thing](http://xeiam.com/xchart_changelog.jsp) and [provide feedback](https://github.com/timmolter/XChart/issues).
## Features ## Features
* No additional dependencies * No additional dependencies
* ~85KB Jar * ~100KB Jar
* Line charts * Line charts
* Scatter charts * Scatter charts
* Area Charts * Area Charts
......
...@@ -38,6 +38,7 @@ public class Example0 { ...@@ -38,6 +38,7 @@ public class Example0 {
// Save it // Save it
BitmapEncoder.savePNG(chart, "./Sample_Chart.png"); BitmapEncoder.savePNG(chart, "./Sample_Chart.png");
BitmapEncoder.savePNGWithDPI(chart, "./Sample_Chart_300_DPI.png", 300);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment