0

I have this progress bar value being loaded from scope

<progressbar value="{{(sales*1)*100/(stock*1) | number}}" class="progress-xs no-radius no-margin" type="danger"></progressbar>

why the progressbar value is not being processed? what is wrong here?

1 Answer 1

1

Do not use expression {{}} while setting the value,

Try

  <div progressbar="value"  value="(value*1)*100/(stock*1) | number"></div>

DEMO

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.