All Projects → eseifert → Gral

eseifert / Gral

Licence: other
Free Java library for displaying plots

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Gral

Matplotplusplus
Matplot++: A C++ Graphics Library for Data Visualization 📊🗾
Stars: ✭ 2,433 (+1490.2%)
Mutual labels:  charts, plots
SwiftCharts
Easy to use and highly customizable charts library for iOS
Stars: ✭ 2,405 (+1471.9%)
Mutual labels:  charts, plots
Forge
High Performance Visualization
Stars: ✭ 140 (-8.5%)
Mutual labels:  charts, plots
Clip
Create charts from the command line
Stars: ✭ 5,111 (+3240.52%)
Mutual labels:  charts, plots
Swiftcharts
Easy to use and highly customizable charts library for iOS
Stars: ✭ 2,336 (+1426.8%)
Mutual labels:  charts, plots
Ggnet
GG.Net Data Visualization
Stars: ✭ 45 (-70.59%)
Mutual labels:  charts, plots
Robe React Ui
Robe React UI Components
Stars: ✭ 133 (-13.07%)
Mutual labels:  charts
Highcharts Ng
AngularJS directive for Highcharts
Stars: ✭ 1,741 (+1037.91%)
Mutual labels:  charts
K8s
Kubernetes Helm Charts for the ORY ecosystem.
Stars: ✭ 127 (-16.99%)
Mutual labels:  charts
React D3 Components
D3 Components for React
Stars: ✭ 1,599 (+945.1%)
Mutual labels:  charts
Helm Charts
Helm charts for Kubernetes curated by Kiwigrid
Stars: ✭ 151 (-1.31%)
Mutual labels:  charts
Helm Charts
Helm charts - Apps for Kubernetes
Stars: ✭ 148 (-3.27%)
Mutual labels:  charts
Coinpusher
📈 real-time cryptocurrency chart prediction based on neuronal-networks
Stars: ✭ 141 (-7.84%)
Mutual labels:  charts
Dxr
DXR is a Unity package for rapid prototyping of immersive data visualizations in augmented, mixed, and virtual reality (AR, MR, VR) or XR for short.
Stars: ✭ 134 (-12.42%)
Mutual labels:  charts
Blazorise
Blazorise is a component library built on top of Blazor with support for CSS frameworks like Bootstrap, Bulma, AntDesign, and Material.
Stars: ✭ 2,103 (+1274.51%)
Mutual labels:  charts
Devextreme Reactive
Business React components for Bootstrap and Material-UI
Stars: ✭ 1,800 (+1076.47%)
Mutual labels:  charts
Chart Gd
Animated charts for Godot Engine
Stars: ✭ 151 (-1.31%)
Mutual labels:  charts
G2
📊 A highly interactive data-driven visualization grammar for statistical charts.
Stars: ✭ 11,020 (+7102.61%)
Mutual labels:  charts
Chart Releaser Action
A GitHub Action to turn a GitHub project into a self-hosted Helm chart repo, using helm/chart-releaser CLI tool
Stars: ✭ 146 (-4.58%)
Mutual labels:  charts
Tinychart
A simple tool to create quick exportable charts
Stars: ✭ 139 (-9.15%)
Mutual labels:  charts

.. image:: https://eseifert.github.io/gral/logo.png

.. image:: https://travis-ci.org/eseifert/gral.svg?branch=master :target: https://travis-ci.org/eseifert/gral

GRAL

GRAL is a free Java library for displaying plots (graphs, diagrams, and charts). The acronym GRAL simply stands for GRAphing Library.

Maintainer wanted

GRAL is looking for a new maintainer. If you are interested, please contact [email protected] <mailto:[email protected]>_.

Features

  • Ready-to-use classes for data management
  • Data processing and filtering (smoothing, rescaling, statistics, histograms)
  • Many different plot types: xy/scatter plot, bubble plot, line plot, area plot, bar plot, pie plot, donut plot, box-and-whisker plot, raster plot
  • Legends: horizontal and vertical
  • Various axis types: linear axes, logarithmic axes, arbitrary number of axes
  • Several file formats are supported as data sources or data sinks (CSV, bitmap image data, audio file data)
  • Exporting plots in bitmap and vector file formats (PNG, GIF, JPEG, EPS, PDF, SVG)
  • Small footprint (about 300 kilobytes)

Usage

Without build management system

You can just add gral-core.jar to the classpath of your project.

Using GRAL with Maven

If you want to use GRAL with your Maven project you will have to include it as a dependency in your pom.xml:

.. code:: xml

<dependency>
    <groupId>de.erichseifert.gral</groupId>
    <artifactId>gral-core</artifactId>
    <version>0.11</version>
</dependency>

Using GRAL with Gradle

.. code:: groovy

dependencies {
    compile group: 'de.erichseifert.gral', name: 'gral-core', version: '0.11'
}

Using GRAL with sbt

.. code:: scala

libraryDependencies += "de.erichseifert.gral" % "gral-core" % "0.11"

Building GRAL from source code

The source package contains all files necessary to build GRAL from scratch using the Gradle <http://www.gradle.org>__ software project management and comprehension tool. Like Makefile files the build.gradle files are used by Gradle to generate various distribution or documentation files.

Building a JAR file of the library core

In case you just want to build the core of the library to get started execute the following command in the gral-core directory::

$ gradle assemble

This will generate a JAR archive named gral-core in the build/libs directory. This JAR file can be added to the class path of your application.

Building a JAR file of the examples

In case you just want to build the core of the library to get started execute the following command in the gral-examples directory::

$ gradle assemble

This will generate a JAR archive for the examples in the build/libs directory which can be used together with the library core to run example applications.

Building the documentation

The GRAL Gradle project offers three sources for documentation:

  1. The JavaDoc files that can be generated with::

    $ gradle javadoc

  2. The reports found in build/reports containing a project various information like test results, test coverage, etc. To build these files just execute::

    $ gradle report

  3. A book-like documentation in the reStructuredText format is available in the file documentation_en.rst.

Using GRAL in an IDE

The Gradle project can also be used in your favorite development environment like Eclipse or NetBeans. For further information look at the following descriptions on the Gradle website http://www.gradle.org/tooling

Once you have installed an appropriate Gradle plug-in for your IDE you will be able to import the GRAL project found in this folder.

Requirements

To build GRAL from source, you need a Gradle version higher than 4.0 and at least Java 7.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].