Skip to content

Commit eb66af8

Browse files
committed
Updates due to AnyChart 8.0.0 release
1 parent 1058c6f commit eb66af8

12 files changed

+55
-34
lines changed

README.md

+17-12
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
[<img src="https://cdn.anychart.com/images/logo-transparent-segoe.png?2" width="234px" alt="AnyChart - Robust JavaScript/HTML5 Chart library for any project">](http://www.anychart.com)
1+
[<img src="https://cdn.anychart.com/images/logo-transparent-segoe.png?2" width="234px" alt="AnyChart - Robust JavaScript/HTML5 Chart library for any project">](https://www.anychart.com)
22

33
jQuery Plugin for AnyChart.
44
=========
55

6-
jQuery plugin for AnyChart provides an easy way to use [AnyChart JavaScript Charts](http://anychart.com) with jQuery framework.
6+
jQuery plugin for AnyChart provides an easy way to use [AnyChart JavaScript Charts](https://www.anychart.com) with jQuery library.
77

88
## Table of Contents
99

@@ -39,9 +39,9 @@ Here is a basic sample that shows how to add a column chart:
3939
<html>
4040
<head>
4141
<!-- Add jQuery -->
42-
<script src="js/vendor/jquery-3.1.1.min.js"></script>
42+
<script src="path/to/node_modules/jquery/dist/jquery.min.js"></script>
4343
<!-- Add anychart-bundle -->
44-
<script src="js/anychart-bundle.min.js"></script>
44+
<script src="path/to/node_modules/anychart/dist/js/anychart-base.min.js"></script>
4545
<!-- Add AnyChart jQuery plugin -->
4646
<script src="js/anychart-jquery.min.js"></script>
4747
</head>
@@ -131,25 +131,30 @@ See examples to learn how things work:
131131

132132
## Contacts
133133

134-
* Web: [www.anychart.com](http://www.anychart.com)
134+
* Web: [www.anychart.com](https://www.anychart.com)
135135
136136
* Twitter: [anychart](https://twitter.com/anychart)
137137
* Facebook: [AnyCharts](https://www.facebook.com/AnyCharts)
138138
* LinkedIn: [anychart](https://www.linkedin.com/company/anychart)
139139

140140
## Links
141141

142-
* [AnyChart Website](http://www.anychart.com)
143-
* [Download AnyChart](http://www.anychart.com/download/)
144-
* [AnyChart Licensing](http://www.anychart.com/buy/)
145-
* [AnyChart Support](http://www.anychart.com/support/)
142+
* [AnyChart Website](https://www.anychart.com)
143+
* [Download AnyChart](https://www.anychart.com/download/)
144+
* [AnyChart Licensing](https://www.anychart.com/buy/)
145+
* [AnyChart Support](https://www.anychart.com/support/)
146146
* [Report Issues](https://github.com/AnyChart/AnyChart-jQuery/issues)
147147
* [AnyChart Playground](http://playground.anychart.com)
148148
* [AnyChart Documentation](http://docs.anychart.com)
149149
* [AnyChart API Reference](http://api.anychart.com)
150-
* [AnyChart Sample Solutions](http://www.anychart.com/solutions/)
151-
* [AnyChart Integrations](http://www.anychart.com/integrations/)
150+
* [AnyChart Sample Solutions](https://www.anychart.com/solutions/)
151+
* [AnyChart Integrations](https://www.anychart.com/integrations/)
152152

153153
## License
154154

155-
[© AnyChart.com - JavaScript charts](http://www.anychart.com). AnyChart jQuery plugin is released under the [Apache 2.0 License](https://github.com/AnyChart/AnyChart-jQuery/blob/master/LICENSE).
155+
AnyChart jQuery plugin sample includes two parts:
156+
- code of the plugin sample that allows to use Javascript library (in this case, AnyChart) with jQuery Library. You can use, edit, modify it, use it with other Javascript libraries without any restrictions. It is released under [Apache 2.0 License](https://github.com/AnyChart/AnyChart-jQuery/blob/master/LICENSE)
157+
- AnyChart JavaScript library. It is released under Commercial license. You can test this plugin with the trial version of AnyChart. Our trial version is not limited by time and doesn't contain any feature limitations. Check details [here](https://www.anychart.com/buy/)
158+
159+
If you have any questions regarding licensing - please contact us. <[email protected]>
160+
[![Analytics](https://ga-beacon.appspot.com/UA-228820-4/Plugins/anychart-jquery?pixel&useReferer)](https://github.com/igrigorik/ga-beacon)

examples/assets/anychart-ui.min.css

-1
This file was deleted.

examples/assets/australia.js

-1
This file was deleted.

examples/assets/hierarchical-data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function getData() {
126126
'connector': [
127127
{
128128
'connectTo': 8,
129-
'connectorType': anychart.enums.ConnectorType.FINISH_START
129+
'connectorType': 'finish-start'
130130
}
131131
]
132132
}

examples/async_data_load.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
4+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
56
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
67
<script src="../dist/anychart-jquery.min.js"></script>
7-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
8+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
9+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
810
<style>
911
html, body {
1012
margin: 0;

examples/choropleth_map.html

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22
<html>
33
<head>
44
<script src="js/vendor/proj4.js"></script>
5-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
6-
<script src="assets/australia.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
6+
<script src="../node_modules/anychart/dist/js/anychart-map.min.js"></script>
7+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
8+
<script src="../node_modules/anychart/dist/geodata/countries/australia/australia.js"></script>
79
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
810
<script src="../dist/anychart-jquery.min.js"></script>
9-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
11+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
12+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
1013
<style>
1114
html, body {
1215
margin: 0;

examples/gantt.html

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
4+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-gantt.min.js"></script>
6+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
57
<script src="assets/hierarchical-data.js"></script>
68
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
79
<script src="../dist/anychart-jquery.min.js"></script>
8-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
10+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
11+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
912
<style>
1013
html, body {
1114
margin: 0;
@@ -21,7 +24,7 @@
2124
<body>
2225
<div id="container"></div>
2326
<script>
24-
var data = anychart.data.tree(getData(), anychart.enums.TreeFillingMethod.AS_TREE);
27+
var data = anychart.data.tree(getData(), 'as-tree');
2528
var cnt = $('#container');
2629
cnt.anychart('ganttProject', data);
2730
var chart = cnt.anychart();

examples/multiple_charts.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
4+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
56
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
67
<script src="../dist/anychart-jquery.min.js"></script>
7-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
8+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
9+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
810

911
<style>
1012
.chart {

examples/simple_chart_update.html

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
<!doctype html>
22
<html>
33
<head>
4+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
46
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
5-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
67
<script src="../dist/anychart-jquery.min.js"></script>
7-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
8+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
9+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
810

911
<style>
1012
html, body {

examples/simple_dashboard.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
4+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-pareto.min.js"></script>
6+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
57
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
68
<script src="../dist/anychart-jquery.min.js"></script>
7-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
9+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
10+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
811

912
<style>
1013
html, body {

examples/stock.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
<!doctype html>
22
<html>
33
<head>
4-
<script src="../node_modules/anychart/dist/anychart-bundle.min.js"></script>
4+
<script src="../node_modules/anychart/dist/js/anychart-base.min.js"></script>
5+
<script src="../node_modules/anychart/dist/js/anychart-stock.min.js"></script>
6+
<script src="../node_modules/anychart/dist/js/anychart-ui.min.js"></script>
57
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
68
<script src="../dist/anychart-jquery.min.js"></script>
9+
<link rel="stylesheet" href="../node_modules/anychart/dist/css/anychart-ui.min.css"/>
10+
<link rel="stylesheet" href="../node_modules/anychart/dist/fonts/css/anychart.min.css"/>
711

812
<script src="assets/msft-daily-short.js"></script>
913
<script src="assets/orcl-daily-short.js"></script>
1014
<script src="assets/csco-daily-short.js"></script>
1115
<script src="assets/ibm-daily-short.js"></script>
12-
<link rel="stylesheet" href="assets/anychart-ui.min.css"/>
1316

1417
<style>
1518
html, body {

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anychart-jquery",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "JQuery plugin for AnyChart JavaScript charting library",
55
"main": "./dist/anychart-jquery.min.js",
66
"scripts": {
@@ -39,8 +39,8 @@
3939
"framework",
4040
"VML"
4141
],
42-
"devDependencies": {
43-
"anychart": "^7.14.0",
42+
"dependencies": {
43+
"anychart": "^8.0.0",
4444
"jquery": "^3.2.1"
4545
}
4646
}

0 commit comments

Comments
 (0)