You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A controller must implement the [Controller](https://pepstock-org.github.io/Charba/6.5/org/pepstock/charba/client/Controller.html) interface which is containing all hooks which will be invoked during the whole chart life cycle.
99
99
100
-
The interface provides **before** and **after** hooks for each phases exposes by [Chart.JS controller](https://www.chartjs.org/docs/4.3.0/developers/charts.html):
100
+
The interface provides **before** and **after** hooks for each phases exposes by [Chart.JS controller](https://www.chartjs.org/docs/4.4.1/developers/charts.html):
*[Labels](https://github.com/emn178/chartjs-plugin-labels) plugin (former PieceLabels). Due to the project is unmaintained, the plugin has been [imported](https://github.com/pepstock-org/Charba/blob/master/src/org/pepstock/charba/client/resources/js/chartjs-plugin-labels.js) in **Charba** project and maintained in [Charba](https://github.com/pepstock-org/Charba/blob/6.4/src/org/pepstock/charba/client/resources/js/chartjs-plugin-labels.js) project
26
+
*[Labels](https://github.com/emn178/chartjs-plugin-labels) plugin (former PieceLabels). Due to the project is unmaintained, the plugin has been [imported](https://github.com/pepstock-org/Charba/blob/master/src/org/pepstock/charba/client/resources/js/chartjs-plugin-labels.js) in **Charba** project and maintained in [Charba](https://github.com/pepstock-org/Charba/blob/6.5/src/org/pepstock/charba/client/resources/js/chartjs-plugin-labels.js) project
*[Hammer.JS](https://github.com/hammerjs/hammer.js) javaScript library for detecting touch gestures, as dependency of [Zoom](https://github.com/chartjs/chartjs-plugin-zoom) plugin
@@ -35,24 +35,24 @@ Furthermore **Charba** has embedded a set of [Chart.JS](http://www.chartjs.org/)
35
35
36
36
**Charba** has got embedded [ML.js](https://github.com/mljs/ml) to enable some [regressions](Regressions) models as part of machine learning tools.
37
37
38
-
To enable the minifying of javascript objects, not provided out-of-the-box, **Charba** needs also [Google Closure Compiler](https://developers.google.com/closure/compiler/), invoked only in [Ant build.xml](https://github.com/pepstock-org/Charba/blob/6.4/build.xml).
38
+
To enable the minifying of javascript objects, not provided out-of-the-box, **Charba** needs also [Google Closure Compiler](https://developers.google.com/closure/compiler/), invoked only in [Ant build.xml](https://github.com/pepstock-org/Charba/blob/6.5/build.xml).
Copy file name to clipboardExpand all lines: docs/getting-started/Building.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,9 +8,9 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
8
8
9
9
## Building
10
10
11
-
To build **Charba**, you can check out the project and to run [Ant build.xml](https://github.com/pepstock-org/Charba/blob/6.4/build.xml).
11
+
To build **Charba**, you can check out the project and to run [Ant build.xml](https://github.com/pepstock-org/Charba/blob/6.5/build.xml).
12
12
13
-
The [Ant build.xml](https://github.com/pepstock-org/Charba/blob/6.4/build.xml) is able to build the 2 artifacts, related to the 2 distributions available.
13
+
The [Ant build.xml](https://github.com/pepstock-org/Charba/blob/6.5/build.xml) is able to build the 2 artifacts, related to the 2 distributions available.
14
14
15
15
The first distribution is a **Charba** file without any GWT dependency (but working on GWT anyway), consumable also in other [J2CL - JavaToClosure](https://github.com/google/j2cl) frameworks, like [Google Elemental2](https://github.com/google/elemental2) and [Elemento](https://github.com/hal/elemento).
16
16
@@ -36,18 +36,18 @@ If you are using [Apache Maven](https://maven.apache.org/):
36
36
<dependency>
37
37
<groupId>org.pepstock</groupId>
38
38
<artifactId>charba</artifactId>
39
-
<version>6.4</version>
39
+
<version>6.5</version>
40
40
<!-- for GWT -->
41
-
<version>6.4-gwt</version>
41
+
<version>6.5-gwt</version>
42
42
</dependency>
43
43
```
44
44
45
45
If you are using [Apache Ivy](http://ant.apache.org/ivy/):
Copy file name to clipboardExpand all lines: docs/plugins/Import.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ Usually all [Chart.JS](http://www.chartjs.org/) are registering themselves autom
93
93
:::
94
94
95
95
:::note PAY ATTENTION
96
-
Unfortunately some [Chart.JS](https://www.chartjs.org/docs/4.3.0/developers/plugins.html#plugin-options) plugins implementations are not respecting the described standard way to store the plugin options.
96
+
Unfortunately some [Chart.JS](https://www.chartjs.org/docs/4.4.1/developers/plugins.html#plugin-options) plugins implementations are not respecting the described standard way to store the plugin options.
97
97
98
98
Therefore **Charba** provides a method to add an additional configuration to whatever chart configuration.
0 commit comments