i want to binde api data so it can render highchart according to data in angular 2 and typescript.


Code:
export class DashboardComponent implements OnInit {
[B]//api having some data
[/B]phones =  this.http.get('http://localhost:7788/countphones').map(res => res.json())
laptops =  this.http.get('http://localhost:7788/countlaptops').map(res => res.json())
televisions =  this.http.get('http://localhost:7788/counttelevisions').map(res
...