MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    How can I update my chart?

    Scheduled Pinned Locked Moved Troubleshooting
    21 Posts 3 Posters 7.3k Views 3 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • D Offline
      doridol @sdetweil
      last edited by

      @sdetweil
      Yes Yes it seems like other people use it. I’ve also tried to change my chart data with this.myChart.data.datasets.data.push(textDataRecived) in socketNotificationReceived but it doesn’t work…

      How can I update myChart data in the socketNotificationReceived function?

      S 1 Reply Last reply Reply Quote 0
      • S Do not disturb
        sdetweil @doridol
        last edited by

        @doridol said in How can I update my chart?:

        @sdetweil
        Yes Yes it seems like other people use it. I’ve also tried to change my chart data with this.myChart.data.datasets.data.push(textDataRecived) in socketNotificationReceived but it doesn’t work…

        How can I update myChart data in the socketNotificationReceived function?

        it should work. you might need to check if ‘this’ is pointing to your module data. use the developers window sources view and put a stop on the notification routine

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        D 1 Reply Last reply Reply Quote 0
        • D Offline
          doridol @sdetweil
          last edited by

          @sdetweil
          I changed socketNotificationReceived like this

          socketNotificationReceived: function (notification, payload) {
                      if (notification === "TEXT_RESULT") {
                          this.textDataRecived = payload;
                          this.loaded = true;
                      }
                      
                      this.myChart.data.datasets.data.push(this.textDataRecived)
                      this.myChart.update();
                      // this.updateDom(60000);
                  },
          

          And I got error like these

          화면 캡처 2021-07-13 231609.png

          S 1 Reply Last reply Reply Quote 0
          • S Do not disturb
            sdetweil @doridol
            last edited by

            @doridol stop on the push, and mouse over ‘this’

            check each part of your data path

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            D 1 Reply Last reply Reply Quote 0
            • D Offline
              doridol @sdetweil
              last edited by

              @sdetweil I’m so sorry that I asked same question twice although you answered my questions.
              I found that this.myChart in socketNotificationReceived doens’t pointing the this.myChart in getDom how can I point this.myChart in socketNotificationReceived exactly to this.myChart in getDom??

              S 1 Reply Last reply Reply Quote 0
              • S Do not disturb
                sdetweil @doridol
                last edited by

                @doridol try

                change

                socketNotificationReceived: function (notification, payload) {
                

                to this

                socketNotificationReceived:  (notification, payload) => {
                

                the arrow function should retain the context of ‘this’.

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                D 1 Reply Last reply Reply Quote 0
                • D Offline
                  doridol @sdetweil
                  last edited by

                  @sdetweil I changed my socketNotificationReceived like this

                  socketNotificationReceived: (notification, payload) => {
                              if (notification === "TEXT_RESULT") {
                                  this.textDataRecived = payload;
                                  this.loaded = true;
                              }
                              
                              console.log(this.myChart)
                              // this.myChart.data.datasets.data = this.textDataRecived
                              // this.updateDom(60000);
                          },
                  

                  I add console.log(this.myChart) to check it point this.myChart in getDom but it print undefined… what did I do wrong??
                  Really thanks for your so many helps

                  S 1 Reply Last reply Reply Quote 0
                  • S Do not disturb
                    sdetweil @doridol
                    last edited by sdetweil

                    @doridol the 1st time thru the chart doesn’t exist yet, right?

                                    // gets the data for chart
                                    this.textDataRecived = payload;
                                    this.loaded = true;
                                }
                                // chart may NOT be drawn yet 
                               // getDom has not been called yet since data arrived
                               if(this.myChart !==  undefined )
                                   console.log(this.myChart)
                    

                    Sam

                    How to add modules

                    learning how to use browser developers window for css changes

                    D 2 Replies Last reply Reply Quote 0
                    • D Offline
                      doridol @sdetweil
                      last edited by

                      @sdetweil aaaaah!! I understood! I’ll try it

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        doridol @sdetweil
                        last edited by

                        @sdetweil I tried it but nothing is printed in develop console window :anxious_face_with_sweat:

                        S 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 2 / 3
                        • First post
                          Last post
                        Enjoying MagicMirror? Please consider a donation!
                        MagicMirror created by Michael Teeuw.
                        Forum managed by Sam, technical setup by Karsten.
                        This forum is using NodeBB as its core | Contributors
                        Contact | Privacy Policy