snuids / grafana-radar-panel

A radar graph panel for Grafana
MIT License
24 stars 12 forks source link

Radar panel fails to render with grafana-image-renderer plugin #28

Closed GZRad closed 2 years ago

GZRad commented 2 years ago

The image renderer always times out. the reason being that the code never calls this.renderingCompleted(); Add it at the end of the "onRender" handler to fix.

snuids commented 2 years ago

Did you try it locally ? If it is the case, I simply add the line blindly.

GZRad commented 2 years ago

Yes, I did. Line 207 of radargraph_ctrl.js

            }
            this.radar.data = this.data;
            this.radar.update();
          }
        }
        this.renderingCompleted();
      }
snuids commented 2 years ago

Done, We will have to wait for grafana to accept it. v1.5.1

GZRad commented 2 years ago

appreciated