Nothing is really spectacular from my vue component code but I'm getting
at klass.render (rickshaw.js:3603)
at Rickshaw.Graph.render (rickshaw.js:525)
with this simple creation code..
this.graph = new Rickshaw.Graph({
element: document.querySelector(`#VB-${this.id}`), //have to call id like this cause the uuid's can start with an integer
renderer: 'area',
stroke: true,
series: [{
data: this.data,
color: this.color,
}]
});
this.graph.render();