Search
Add From Maven Central

You can install the MindFusion.Charting library from Maven Central. After integrating it by following any of the following steps, you should be able to import com.mindfusion.charting API and add components from the library to your UI (Dashboard and Chart -derived components).

IntelliJ IDE

In order to integrate Charting for Java Swing into your IntelliJ project, select the Project Structure command from File menu, open Modules -> Dependencies page, click the + button and select Library -> From Maven command:

On the Download Library from Maven screen, search for "mindfusion:charting", select latest version of the package and click OK:

On Configure Library screen, select the library level and click OK:

Eclipse IDE

From Maven-based project's context menu, select Maven -> Add Dependency command:

On Add Dependency screen, enter "eu.mindfusion", "charting", current version in respective fields and click OK:

Maven Projects

In any Maven-based project, you can list eu.mindfusion.charting package as dependency in pom.xml and let the build system take care of downloading and integrating the jar file:

pom.xml  Copy Code

<dependency>
    <groupId>eu.mindfusion</groupId>
    <artifactId>charting</artifactId>
    <version>1.1.2</version>
</dependency>

Gradle Projects

In any Gradle-based project, you can list eu.mindfusion.charting package as dependency in build.gradle and let the build system take care of downloading and integrating the jar file:

build.gradle  Copy Code

dependencies {
    implementation 'eu.mindfusion:charting:1.1.2'
}