i have an object like this
var obj = {"test price type ty dynamic ": 10, test: 7, pricetype1u: 0, Price type 3: 0, Price type 2: 0}
in an angular component html, using bootstrap i written like this
<button type="button"
icon="file-excel"
data-toggle="tooltip"
data-placement="top"
title="{{obj}}">
<span class="k-icon k-i-info"></span>
</button>
tooltip is showing like (object) this:
{
"test price type ty dynamic ": 10,
"test": 7,
"pricetype1u": 0,
"Price type 3": 0,
"Price type 2": 0
}
my requirement is to show tooltip like this
test price type ty dynamic : 10
test : 7
pricetype1u : 0
Price type 3 : 0
Price type 2 : 0
please help me how can i get this required format