Kristiyan Kostadinov

Results 335 comments of Kristiyan Kostadinov

You're right that the intent with host directives is for them to work as if they were applied inside a template. I think that this case is different, because you...

Sure, let's discuss it. I've added it to the agenda.

It would be difficult to set an `aria-label` or `aria-labelledby` automatically from inside the library since it can't know what context the component is used in. You can set the...

You're passing in a static value to `current`. You're supposed to use a data binding: ```html ```

You can either have a value on each of your `item`-s, or you can bind all items to the same progress value.

Honestly there isn't that much that could cause a memory leak in the component since it's basically taking the values of a bunch of inputs and generating an SVG out...

[You can check out the demo's source code.](https://github.com/crisbeto/angular-svg-round-progressbar/blob/master/demo/demo.html) You're supposed to put an SVG element, containing the gradient, somewhere on the page: ```html ``` Afterwards you pass the gradient id...

Do the gradients have unique ids?

That error means that you haven't included the `RoundProgressModule` in your NgModule.

This is covered under the `Install` section of the readme.