jlinegraph/README.md
2022-09-15 18:33:34 +02:00

32 lines
537 B
Markdown

# JLineGraph
Small library to draw line graphs in java
![.preview.png](.preview.png)
## Install
Add MCHV repository to your pom.xml
```xml
<repositories>
<repository>
<id>mchv</id>
<name>MCHV Apache Maven Packages</name>
<url>https://mvn.mchv.eu/repository/mchv/</url>
</repository>
</repositories>
```
Add the dependency to your pom.xml
```xml
<dependencies>
<dependency>
<groupId>it.cavallium</groupId>
<artifactId>jlinegraph</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
```