Skip to content

Use all available features of eCharts within ioBroker

License

Notifications You must be signed in to change notification settings

MyHomeMyData/ioBroker.flexcharts

Repository files navigation

Logo

ioBroker.flexcharts

NPM version Downloads Number of Installations Current version in stable repository

NPM

Tests: Test and Release

flexcharts adapter for ioBroker

Basic concept

There are several adapters available to view charts within ioBroker. As far as I know, all of them are using a UI to configure content and options of the charts. Typically not all features of the used graphical sub system could be used in this way. E.g. it's not possible to view fully featured stacked charts with eChart-Adapter.

This adapter uses a different approach. It brings almost the complete feature set of Apache ECharts to ioBroker. Take a look to the demo charts.

Remark: Adapter was not tested on MacOS, yet.

There is no UI to configure any chart. You have to define the chart yourself, the adapter takes care about visualization. You have to provide definition and content of the chart by providing the content as a json-object - in eCharts examples it corresponds to the content of variable option. Here's an example to make it clear. To create a stacked chart you store it's definition in an ioBroker state (json format):

{ "tooltip": {"trigger": "axis","axisPointer": {"type": "shadow"}},
  "legend": {},
  "xAxis": [{"type": "category","data": ["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]}],
  "yAxis": [{"type": "value"}],
  "dataZoom": [{"show": true,"start": 0, "end": 100}],
  "series": [
    { "name": "Grid", "type": "bar", "color": "#a30000", "stack": "Supply",
      "data": [8,19,21,50,26,0,36]},
    { "name": "PV", "type": "bar", "color": "#00a300", "stack": "Supply",
      "data": [30,32,20,8,33,21,36]},
    { "name": "Household", "type": "bar", "color": "#0000a3", "stack": "Consumption",
      "data": [16,12,11,13,14,9,12]},
    { "name": "Heat pump", "type": "bar", "color": "#0000ff", "stack": "Consumption",
      "data": [22,24,30,20,22,12,25]},
    { "name": "Wallbox", "type": "bar", "color": "#00a3a3", "stack": "Consumption",
      "data": [0,15,0,25,23,0,35]}
  ]
}

flexchart adapter will then show this chart:

flexcharts_stacked1

Typically you will use Blockly or javascript to create and update content of this state.

There is another possibility to directly hand over eCharts-data via callback function within javascript. For details see below.

To be clear: This approach is not intended to be used to quickly create a simple chart. But if you have a specific idea in mind for a more complex chart, flexcharts offers the possibility to implement it.

Getting started

Using the adapter

This adapter brings it's functionality as a web extension. Therefore it is mandatory to have installed and running the web adapter (web.0). In this readme it's assumed you're using the standard port 8082 for web adapter.

When flexcharts adapter is active you can access it via http://localhost:8082/flexcharts/echarts.html (replace localhost by address of your ioBroker server).

You may use this address in iFrame widgets of vis or jarvis or other visualizations. Of course you can also use it directly in a browser tab.

To make it work, you have to provide additional parameters to tell the adapter about the source of data. Two options are availabe:

  • source=state => You provide chart data in an ioBroker state (json)
  • source=script => You provide chart data via a script (javascript or blockly)

There are additional options available, pls. refer to reference section

To check for correct installation of adapter use built-in demo chart: http://localhost:8082/flexcharts/echarts.html?source=state&id=flexcharts.0.info.chart1

Use ioBroker state as source for an eChart

Example: http://localhost:8082/flexcharts/echarts.html?source=state&id=0_userdata.0.echarts.chart1

Flexcharts will evaluate state 0_userdata.0.echarts.chart1 as data for eChart. Try it: Create such a state and copy json data of example shown above ({ "tooltip": { ...) as state content, then access given address with a browser.

Use javascript as source for an eChart

This is a bit more complicated but much more efficient and flexible. You provide the charts data directly by your JS script which is dynamically called by flexcharts adapter. You can pass additional parameters to your script by adding parameters to the http-address, e.g. &chart=chart1. All http-parameters are availabe within script in the object httpParams (see example below).

Again it's best to explain using an example. Create a script with this content (only first JS instance (javascript.0) is supported, name of script doesn't matter):

onMessage('flexcharts', (httpParams, callback) => {
    const myJsonParams  = (httpParams.myjsonparams ? JSON.parse(httpParams.myjsonparams) : {} );
    console.log(`httpParams = ${JSON.stringify(httpParams)}`);
    console.log(`myJsonParams = ${JSON.stringify(myJsonParams)}`);
    chart1(result => callback(result));
});

function chart1(callback) {
    const option = {
        tooltip: {trigger: "axis", axisPointer: {type: "shadow"}},
        legend: {},
        xAxis: [{type: "category", data: ["Mon","Tue","Wed","Thu","Fri","Sat","Sun"]}],
        yAxis: [{type: "value"}],
        dataZoom: [{show: true, start: 0, end: 100}],
        series: [
            { name: "Grid", type: "bar", color: "#a30000", stack: "Supply",
              data: [8,19,21,50,26,0,36]},
            { name: "PV", type: "bar", color: "#00a300", stack: "Supply",
            data: [30,32,20,8,33,21,36]},
            { name: "Household", type: "bar", color: "#0000a3", stack: "Consumption",
            data: [16,12,11,13,14,9,12]},
            { name: "Heat pump", type: "bar", color: "#0000ff", stack: "Consumption",
            data: [22,24,30,20,22,12,25]},
            { name: "Wallbox", type: "bar", color: "#00a3a3", stack: "Consumption",
            data: [0,15,0,25,23,0,35]}
        ]
    };
    callback(option);
}

Start the script and access this address in a browser: http://localhost:8082/flexcharts/echarts.html?source=script

Same chart should show up as in previous example.

You should get two log entries of the example script:

httpParams = {"message":"mylinechart","source":"script"}
myJsonParams = {}

Additional paramters can be forwarded to the script and will be available within the script in variable httpParams. Try following command: http://localhost:8082/flexcharts/echarts.html?source=script&chart=chart1&myjsonparams={"period":"daily"}

Log entries now should look like this:

httpParams = {"source":"script","chart":"chart1","myjsonparams":"{\"period\":\"daily\"}"}`
myJsonParams = {"period":"daily"}

Pls. note, you have to use the onMessage() functionality to receive the trigger from the adapter. Default vaule for the message is flexcharts as shown in example above. You may use different messages by providing an additional parameter, e.g. to use message mycharts add &message=mycharts to http address: http://localhost:8082/flexcharts/echarts.html?source=script&message=mycharts

Using functions within definition of chart

Unfortunately function definitions within chart definition will typically not work because it's filtered when using JSON.stringify(option) or callback(option).

However, since V0.3.0 of flexcharts it's possible to bring it to work. A bit more effort is needed:

  • Add npm module javascript-stringify to instance 0 of javascript adapter. To do so, add javascript-stringify to "Additional npm modules" in configuration of adapter: add npm modules
  • In your script add var strify = require('javascript-stringify'); at the beginning
  • When using script as data source: Within your onMessage() functionality replace callback(option); by callback(strify.stringify(option)); (assuming option contains your chart definition).
  • Then using a state as data source: When creating the state replace setState('my_chart_id', JSON.stringify(option), true); by setState('my_chart_id', strify.stringify(option), true);
  • That's it. Now functions within chart definitions will be correctly forwarded to flexcharts.

Just try it using template3. A function is used to show data of tooltip with 2 decimals: tooltip: {trigger: "axis", valueFormatter: (value) => '$' + value.toFixed(2)}.

An example using chart definition via state is given in flexcharts.0.info.chart2. This will show same chart as template3.

Remark: When npm module javascript-stringify is installed, it's functionality could also be used by malicious code (Cross-Site-Scripting). Therefore, ioBroker should not be accessible from the Internet when using this module.

Templates

Javascript templates are available for some uses cases:

  • chart using data from history adapter: template1
  • simple chart for a heat curve: template2
  • simple stacked bar chart using function within chart definition: template3
  • a very specific use case is available for Viessmann devices of E3 series, e.g. heat pump Vitocal 250. Refer to MyHomeMyData/ioBroker.e3oncan#35

Reference

Use ioBroker state as data source: http://localhost:8082/flexcharts/echarts.html?source=state&id=my_state_id

Use javascript as data source: http://localhost:8082/flexcharts/echarts.html?source=script

Optional arguments

  • &message=my_message - sends "my_message" to javascript. Use onMessage('my_message', (httpParams, callback) => { callback(mychart); }) to provide chart data. Defaults to flexcharts.
  • &darkmode - activates dark mode visualization of ECharts.
  • &refresh=number - do a refresh of chart ervery "number" seconds. Defaults to 60 seconds. Minimum allowed value is 5 seconds.
  • &user_defined_arguments - Add more parameters as per your need. All arguments are available within function onMessage() in object httpParams. See examples above and templates for more details.

Using functions within definition of charts

Available with version 0.3.0 or newer. Pls. refer previous chapter

Built-in demo chart

There is a built-in demo chart available: http://localhost:8082/flexcharts/echarts.html?source=state&id=flexcharts.0.info.chart1

This should bring up a demo chart, when flexcharts- and web-adapter are running.

Note: Replace localhost by address of your ioBroker server. Replace 8082 by port number used by your Web-Adapter.

Changelog

0.3.0 (2025-01-08)

  • (MyHomeMyData) Enhancement for usage of functions within echart definitions.
  • (MyHomeMyData) Fix for issue #56 (findings of repository checker)

0.2.0 (2024-11-06)

  • (MyHomeMyData) Updated readme. Added sections Templates and Reference.
  • (MyHomeMyData) Fix for issue #41 (findings of repository checker)
  • (MyHomeMyData) Updated ECharts to version 5.5.1, see issue #40
  • (MyHomeMyData) Fix for issue #39 (html warnings)
  • (MyHomeMyData) Added option 'refresh' to enable auto update of chart

0.1.6 (2024-10-19)

  • (MyHomeMyData) Fix for issue #37

0.1.5 (2024-10-11)

  • (MyHomeMyData) Fixes for issue #36

0.1.4 (2024-10-06)

  • (MyHomeMyData) Fixes for issue #34
  • (MyHomeMyData) Fixes for issue #33

0.1.3 (2024-10-05)

  • (MyHomeMyData) Fixed issue on windows systems (handling of file path)

0.1.2 (2024-10-01)

  • (MyHomeMyData) Adapted adapter configurations

0.1.1 (2024-10-01)

  • (MyHomeMyData) Removed main.js from package.json since it's obsolete

0.1.0 (2024-10-01)

0.0.4 (2024-09-13)

  • (MyHomeMyData) Changed default port to 3100 to avoid conflict with camera adapter
  • (MyHomeMyData) Check for conflicting port usage during start of instance
  • (MyHomeMyData) Added option to select dark mode
  • (MyHomeMyData) Fixed missing 404-page

0.0.3 (2024-08-25)

  • (MyHomeMyData) Disabled sinon should interface
  • (MyHomeMyData) Update of npm dependencies

0.0.2 (2024-08-05)

  • (MyHomeMyData) initial release

License

MIT License

Copyright (c) 2025 MyHomeMyData [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Additional remark: Source code of Apache ECharts is used according to Apache License, Version 2.0