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

prepare for 2.4.1 release

parent b46f4b86
No related branches found
No related tags found
No related merge requests found
...@@ -20,10 +20,10 @@ Usage is very simple: Create a Chart instance, add a series of data to it, and e ...@@ -20,10 +20,10 @@ Usage is very simple: Create a Chart instance, add a series of data to it, and e
new SwingWrapper(chart).displayChart(); new SwingWrapper(chart).displayChart();
// Save it // Save it
BitmapEncoder.savePNG(chart, "./Sample_Chart.png"); BitmapEncoder.saveBitmap(chart, "./Sample_Chart", BitmapFormat.PNG);
// or save it in high-res // or save it in high-res
BitmapEncoder.savePNGWithDPI(chart, "./Sample_Chart_300_DPI.png", 300); BitmapEncoder.saveBitmapWithDPI(chart, "./Sample_Chart_300_DPI", BitmapFormat.PNG, 300);
Now go ahead and [study some more examples](http://xeiam.com/xchart-example-code/), [download the thing](http://xeiam.com/xchart-change-log) and [provide feedback](https://github.com/timmolter/XChart/issues). Now go ahead and [study some more examples](http://xeiam.com/xchart-example-code/), [download the thing](http://xeiam.com/xchart-change-log) and [provide feedback](https://github.com/timmolter/XChart/issues).
...@@ -63,7 +63,7 @@ Add the XChart library as a dependency to your pom.xml file: ...@@ -63,7 +63,7 @@ Add the XChart library as a dependency to your pom.xml file:
<dependency> <dependency>
<groupId>com.xeiam.xchart</groupId> <groupId>com.xeiam.xchart</groupId>
<artifactId>xchart</artifactId> <artifactId>xchart</artifactId>
<version>2.4.0</version> <version>2.4.1</version>
</dependency> </dependency>
For snapshots, add the following to your pom.xml file: For snapshots, add the following to your pom.xml file:
...@@ -77,7 +77,7 @@ For snapshots, add the following to your pom.xml file: ...@@ -77,7 +77,7 @@ For snapshots, add the following to your pom.xml file:
<dependency> <dependency>
<groupId>com.xeiam</groupId> <groupId>com.xeiam</groupId>
<artifactId>xchart</artifactId> <artifactId>xchart</artifactId>
<version>2.4.1-SNAPSHOT</version> <version>2.4.2-SNAPSHOT</version>
</dependency> </dependency>
## Building ## Building
...@@ -95,7 +95,7 @@ For snapshots, add the following to your pom.xml file: ...@@ -95,7 +95,7 @@ For snapshots, add the following to your pom.xml file:
## Running Demo ## Running Demo
cd /path/to/xchart-demo/jar/ cd /path/to/xchart-demo/jar/
java -cp xchart-demo-2.4.0.jar:xchart-2.4.0.jar com.xeiam.xchart.demo.XChartDemo java -cp xchart-demo-2.4.1.jar:xchart-2.4.1.jar com.xeiam.xchart.demo.XChartDemo
## Bugs ## Bugs
Please report any bugs or submit feature requests to [XChart's Github issue tracker](https://github.com/timmolter/XChart/issues). Please report any bugs or submit feature requests to [XChart's Github issue tracker](https://github.com/timmolter/XChart/issues).
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment