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

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    Test eCharts Adapter

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

      @stephan1827 Ich habe genau dasselbe Problem beim einbinden über IFrame in VIS

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

        @dskrt
        @stephan1827

        Das Problem hatte ich auch mal mit Lovelace und Flot.
        Da lag es daran, dass die eine Instanz mittels Ssl verschlüsselt war und die andere nicht.
        Nachdem beides auf Ssl gestellt war, lief es dann.

        D stephan1827 3 Replies Last reply Reply Quote 0
        • D
          dskrt @David G. last edited by

          @david-g Beide Iaufen über https://, oder meintest du etwas anderes ?

          K 1 Reply Last reply Reply Quote 0
          • K
            Kueppert @dskrt last edited by

            @dskrt ich hab irgendwie im Hinterkopf, das nur HTTP funktioniert, bin mir aber unsicher. Wäre aber nen Versuch wert...

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

              @kueppert

              Ich hab lovelace und echarts per Ssl am laufen und in meine Visu eingebunden.

              1 Reply Last reply Reply Quote 0
              • 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
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            761
                                            Online

                                            31.8k
                                            Users

                                            79.9k
                                            Topics

                                            1.3m
                                            Posts

                                            echarts
                                            101
                                            624
                                            134696
                                            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