Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Test eCharts Adapter

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Test eCharts Adapter

    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      dskrt @David G. last edited by dskrt

      @david-g Es ist definitiv ein Problem zwischen VIS und ECharts, ein Iframe in VIS mit JarVIS oder auch FLOT läuft einwandfrei, sowohl https wie auch http. Irgendwo in ECharts ist eine Option zum setzen von 'allow Iframes, aber wo ? Wer kann helfen ?

      David G. 1 Reply Last reply Reply Quote 0
      • Steff
        Steff last edited by

        Moin,
        ich versuche mich immer noch an dem Server-Side-Rendering, ich möchte gerne Charts an Telegram versenden. Muss da noch etwas installiert / aktiviert werden? Wenn ich das Beispiel-Script von @Bluefox nehme, passiert bei mir rein gar nichts - es gibt auch keinen Log-Eintrag.

        Gruß Steffen

        Homoran 1 Reply Last reply Reply Quote 0
        • Homoran
          Homoran Global Moderator Administrators @Steff last edited by Homoran

          @steff sagte in Test eCharts Adapter:

          das Beispiel-Script von @Bluefox nehme

          hast du dazu mal einen Link?

          EDIT:
          meinst du das hier: https://github.com/ioBroker/ioBroker.echarts#server-side-rendering

          Steff 1 Reply Last reply Reply Quote 0
          • Steff
            Steff @Homoran last edited by

            @homoran,
            ich habe das hier aus diesem Post genommen Link Text

            Gruß Steffen

            Homoran 1 Reply Last reply Reply Quote 0
            • Homoran
              Homoran Global Moderator Administrators @Steff last edited by

              @steff sagte in Test eCharts Adapter:

              @homoran,
              ich habe das hier aus diesem Post genommen Link Text

              Gruß Steffen

              das ist ja fast, das gleiche, bzw. eine Umsetzung dessen, was auf github steht:

              sendTo('echarts.0', {
                  preset:   'echarts.0.myPreset', // the only mandatory attribute
              
                  renderer: 'svg',                // svg | png | jpg | pdf, default: svg
              
                  width: 1024,                    // default 1024
                  height: 300,                    // default 300
                  background: '#000000',          // Background color
                  theme: 'light',                 // Theme type: 'light', 'dark'
              
                  title: 'ioBroker Chart',        // Title of PDF document 
                  quality: 0.8,                   // quality of JPG
                  compressionLevel: 3,            // Compression level of PNG
                  filters: 8,                     // Filters of PNG (Bit combination https://github.com/Automattic/node-canvas/blob/master/types/index.d.ts#L10)
              
                  fileOnDisk: '',                 // Path on disk to save the file. 
                  fileName: '',                   // Path in ioBroker DB to save the files on 'echarts.0'. E.g. if your set "chart.svg", so you can access your picture via http(s)://ip:8082/echarts.0/chart.png
              }, result => {
                  if (result.error) {
                      console.error(result.error);
                  } else {
                      console.log(result.data);
                  }
              });
              

              Die Variablen hast du aber angepasst?
              (Info: Ich habe das Skript noch nicht probiert!)

              Steff 1 Reply Last reply Reply Quote 0
              • Steff
                Steff @Homoran last edited by

                @homoran,
                ja, habe ich angepasst.
                Sieht bei mir momentan so aus:

                // Chart vorbereiten und an Telegram-Empfänger schicken
                sendTo('echarts.0', {
                	preset: 'echarts.0.Heizung.Solaranlage',
                	renderer: 'png',
                        fileOnDisk: '/tmp/chart.png'
                }, result => {
                	if (result.error) {
                		console.error(result.error);
                	} else {
                		console.log(result.data);
                        sendTo('telegram.0', '/tmp/chart.png');
                	}
                });
                
                Homoran 1 Reply Last reply Reply Quote 0
                • Homoran
                  Homoran Global Moderator Administrators @Steff last edited by

                  @steff in /tmp/ liegt nichts?

                  Steff 1 Reply Last reply Reply Quote 0
                  • Steff
                    Steff @Homoran last edited by

                    @homoran sagte in Test eCharts Adapter:

                    @steff in /tmp/ liegt nichts?

                    Nee, das File wird nicht angelegt.

                    Homoran 1 Reply Last reply Reply Quote 0
                    • Homoran
                      Homoran Global Moderator Administrators @Steff last edited by

                      @steff Hab es gerade getestet und bekomme folgenden Error:

                      11:25:17.553	error	javascript.0 (4830) script.js.serverside_rendering: Cannot find required modules: looks like it is not possible to generate charts on your Hardware/OS
                      
                      Steff 1 Reply Last reply Reply Quote 0
                      • Steff
                        Steff @Homoran last edited by

                        @homoran,
                        Hui, solch eine Fehlermeldung bekomme ich gar nicht.

                        1 Reply Last reply Reply Quote 0
                        • David G.
                          David G. @dskrt last edited by

                          @dskrt

                          Evtl hilft das weiter:

                          @david-g said in Test eCharts Adapter:

                          @Hydrokultur
                          Ich mache es folgendermaßen:

                          Das echart in einem neuen Tab öffnen. Dafür gibt es ja ein Symbol.

                          Screenshot_20201204-173642_Chrome.jpg

                          Dann den Link kopieren. Allerdings dann den Port von 8081 auf 8082 abändern. Sonst geht es nicht.

                          D 1 Reply Last reply Reply Quote 0
                          • stephan1827
                            stephan1827 @David G. last edited by

                            @david-g bei mir laufen beide über HTTP, wenn ich den Adpater Web auf HTTPS umstellen dann funktioniert keines des iFrames. Die Adresse von jarvis ist

                            http://192.168.86.90:8082/jarvis/index.html#instance=0

                            und die von echart is

                            http://192.168.86.90:8081/adapter/echarts/chart/index.html?preset=echarts.0.Solar

                            Kann es eventuell an dem Port liegen. Kann ich den bei echart ändern?

                            Stephan

                            David G. 1 Reply Last reply Reply Quote 0
                            • Steff
                              Steff last edited by

                              @homoran sagte in Test eCharts Adapter:

                              Weißt du welche Module bei dir fehlen?

                              Homoran 2 Replies Last reply Reply Quote 0
                              • Homoran
                                Homoran Global Moderator Administrators @Steff last edited by

                                @steff sagte in Test eCharts Adapter:

                                Weißt du welche Module bei dir fehlen?

                                nee.
                                habe gerade mal nach sendTo gesehen, die existieren, auch für eCharts

                                1 Reply Last reply Reply Quote 0
                                • Homoran
                                  Homoran Global Moderator Administrators @Steff last edited by Homoran

                                  @steff Jetzt hab ich was:
                                  echarts.0 2021-03-14 11:55:38.140 error (15339) Cannot find required modules: Error: Cannot find module 'canvas'

                                  wieso denn das?

                                  1 Reply Last reply Reply Quote 0
                                  • David G.
                                    David G. @stephan1827 last edited by David G.

                                    @stephan1827

                                    Nicht, dass ich wüsste....

                                    1 Reply Last reply Reply Quote 0
                                    • Steff
                                      Steff last edited by

                                      @homoran sagte in Test eCharts Adapter:

                                      wieso denn das?

                                      Wenn ich auf der Seite npmjs.com siehe Link schaue steht unter den Dependencies canvas?! 😕

                                      Homoran 2 Replies Last reply Reply Quote 0
                                      • Homoran
                                        Homoran Global Moderator Administrators @Steff last edited by

                                        @steff sagte in Test eCharts Adapter:

                                        @homoran sagte in Test eCharts Adapter:

                                        wieso denn das?

                                        Wenn ich auf der Seite npmjs.com siehe Link schaue steht unter den Dependencies canvas?! 😕

                                        klar, aber wieso das nicht mehr drin ist....
                                        Versuche es gerade nachzuinstallieren - stay tuned

                                        1 Reply Last reply Reply Quote 0
                                        • D
                                          dskrt @David G. last edited by

                                          @david-g Super, danke, klappt mit der Änderung des Ports! Ist aber schon eigenartig, Flot und Jarvis nutzen 8082, Echarts 8081 als Port. Vielleicht sollte das geändert werden ?

                                          Homoran stephan1827 2 Replies Last reply Reply Quote 0
                                          • Homoran
                                            Homoran Global Moderator Administrators @dskrt last edited by

                                            @dskrt sagte in Test eCharts Adapter:

                                            Vielleicht sollte das geändert werden ?

                                            kann man beides nutzen

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            734
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            echarts
                                            101
                                            624
                                            133783
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo