I'm curious to know how you guys would convert binding a data input from
template: `<guage-bar [guage]=guageBar></guage-bar>`
to doing something like this
let data = new PercentValue(20, 100);
let guageBar = new GuageBar(this.data,'Database Health');
GuageBarComponent.guage = this.guageBar;
I've tried this and it doesn't work. My end goal is trying to do input property values inside another class using a service.
Thanks!