highcharts

WebJar for highcharts

License

License

Categories

Categories

Github Development Tools Version Controls Charts User Interface
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

github-com-introquest-highcharts-dist
Last Version

Last Version

v5.0.6
Release Date

Release Date

Type

Type

jar
Description

Description

highcharts
WebJar for highcharts
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/introquest/highcharts-dist

Download github-com-introquest-highcharts-dist

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/github-com-introquest-highcharts-dist/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>github-com-introquest-highcharts-dist</artifactId>
    <version>v5.0.6</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-introquest-highcharts-dist/
implementation 'org.webjars.bower:github-com-introquest-highcharts-dist:v5.0.6'
// https://jarcasting.com/artifacts/org.webjars.bower/github-com-introquest-highcharts-dist/
implementation ("org.webjars.bower:github-com-introquest-highcharts-dist:v5.0.6")
'org.webjars.bower:github-com-introquest-highcharts-dist:jar:v5.0.6'
<dependency org="org.webjars.bower" name="github-com-introquest-highcharts-dist" rev="v5.0.6">
  <artifact name="github-com-introquest-highcharts-dist" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='github-com-introquest-highcharts-dist', version='v5.0.6')
)
libraryDependencies += "org.webjars.bower" % "github-com-introquest-highcharts-dist" % "v5.0.6"
[org.webjars.bower/github-com-introquest-highcharts-dist "v5.0.6"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Highcharts is a JavaScript charting library based on SVG, with fallbacks to VML and canvas for old browsers. This package also contains Highstock, the financial charting package, and Highmaps for geo maps.

For NPM users, please note that this module replaces the previous Highcharts Server module.

Example Usage in Node/Browserify/Webpack

Please note that there are several ways to use Highcharts. For general installation instructions, see the docs.

First, install the highcharts package.

npm install highcharts

Now load Highcharts in your project.

// Load Highcharts
var Highcharts = require('highcharts');

// Alternatively, this is how to load Highstock or Highmaps
// var Highcharts = require('highcharts/highstock');
// var Highcharts = require('highcharts/highmaps');

// This is how a module is loaded. Pass in Highcharts as a parameter.
require('highcharts/modules/exporting')(Highcharts);

// Generate the chart
var chart = Highcharts.chart('container', {
	series: [{
		data: [1, 3, 2, 4]
	}],
  	// ... more options - see http://api.highcharts.com/highcharts
});

Versions

Version
v5.0.6