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

prepare readme for 3.1.0 release

parent d92eba73
No related branches found
No related tags found
No related merge requests found
......@@ -114,9 +114,11 @@ To make it real-time, simply call `updateSeries` on the `XChartPanel` instance.
* [x] Bar charts
* [x] Histogram charts
* [x] Pie charts
* [x] Donut charts
* [x] Bubble charts
* [x] Error bars
* [x] Logarithmic axes
* [x] Number, Date and Category X-Axis
* [x] Number, Date, Bubble and Category X-Axis
* [x] Multiple series
* [x] Extensive customization
* [x] Themes - XChart, GGPlot2, Matlab
......@@ -202,7 +204,7 @@ Add the XChart library as a dependency to your pom.xml file:
<dependency>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart</artifactId>
<version>3.0.4</version>
<version>3.1.0</version>
</dependency>
```
......@@ -218,7 +220,7 @@ For snapshots, add the following to your pom.xml file:
<dependency>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart</artifactId>
<version>3.1.0-SNAPSHOT</version>
<version>3.1.1-SNAPSHOT</version>
</dependency>
```
......@@ -229,7 +231,7 @@ Snapshots can be manually downloaded from Sonatyope: [https://oss.sonatype.org/c
To use XChart with the Scala Build Tool (SBT) add the following to your build.sbt
```scala
libraryDependencies += "org.knowm.xchart" % "xchart" % "3.0.1" exclude("de.erichseifert.vectorgraphics2d", "VectorGraphics2D") withSources()
libraryDependencies += "org.knowm.xchart" % "xchart" % "3.1.0" exclude("de.erichseifert.vectorgraphics2d", "VectorGraphics2D") withSources()
```
(SBT/Ivy does not seem to respect the optional [VectorGraphics2D](https://github.com/eseifert/vectorgraphics2d) dependency and as it does not exist in Maven Central the build will fail unless it is excluded or available in a local repository.)
......@@ -249,7 +251,7 @@ libraryDependencies += "org.knowm.xchart" % "xchart" % "3.0.1" exclude("de.erich
## Running Demo
cd /path/to/xchart-demo/jar/
java -cp xchart-demo-3.0.4.jar:xchart-3.0.4.jar org.knowm.xchart.demo.XChartDemo
java -cp xchart-demo-3.1.0.jar:xchart-3.1.0.jar org.knowm.xchart.demo.XChartDemo
![](https://raw.githubusercontent.com/timmolter/XChart/develop/etc/XChart_Demo.png)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment