Skip to content

Commit a6d3062

Browse files
committed
Fix version
1 parent 5332e17 commit a6d3062

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

dist/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# <img src="src/img/plotly.svg" width="30" style="margin-bottom:-5px"> Plotly Panel
1+
# Plotly Panel
22

33
[https://github.com/ae3e/ae3e-plotly-panel](https://github.com/ae3e/ae3e-plotly-panel)
44

5-
Render chart from any datasource with [Plotly](https://plotly.com/javascript/) (An open source javascript graphing library)
5+
Render any kind of charts from any datasource with [Plotly](https://plotly.com/javascript/) (An open source javascript graphing library)
66

77
Unlike the [natel-plotly-panel](https://github.com/NatelEnergy/grafana-plotly-panel), this plugin is not limited to specific types of charts. But, on the other hand, the user interface is really rough in order to let users to set all options available in Plotly.
88

99
The *Data*, *Layout* and *Config* fields match the common parameters described in [Plotly's documentation](https://plotly.com/javascript/plotlyjs-function-reference/). They must be in JSON format.
1010

1111
Data provided by the datasource can be transformed via a user-defined script before to be injected in the Plotly chart. The script includes 2 arguments :
1212
- `data` : Data returns by the datasource
13-
- `variables` : Object that contains [Grafana's variables](https://grafana.com/docs/grafana/latest/reference/templating/) available in the current dashboard
13+
- `variables` : Object that contains [Grafana's variables](https://grafana.com/docs/grafana/latest/variables/) available in the current dashboard (user variables and few global variables : `__from`, `__to`, `__interval` and `__interval_ms`).
1414

1515
The script must return an object with one or more of the following properties : `data`, `layout`, `config`.
1616

@@ -41,6 +41,6 @@ Plotly panel editor :
4141

4242
![Editor](https://raw.githubusercontent.com//ae3e/ae3e-plotly-panel/master/src/img/editor.png)
4343

44-
Example of a wind rose chart :
44+
Example of charts :
4545

4646
![Panel](https://raw.githubusercontent.com//ae3e/ae3e-plotly-panel/master/src/img/panel.png)

dist/img/editor.png

54.8 KB
Loading

dist/img/panel.png

388 KB
Loading

dist/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
{"name": "Editor", "path": "img/editor.png"},
2121
{"name": "Panel", "path": "img/panel.png"}
2222
],
23-
"version": "0.3.0",
23+
"version": "0.3.1",
2424
"updated": "2020-10-13"
2525
},
2626

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ae3e-plotly-panel",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Grafana Plotly Panel",
55
"scripts": {
66
"build": "grafana-toolkit plugin:build",

0 commit comments

Comments
 (0)