the data im getting from server comes in this format i want it to come in a form of an Object.
public getOrder(): Observable < ORDERS > {
return this._http.get < ORDERS > (`${this._apiBase}/charts/list/ORDERS/`);
}
here how im getting the data from server.
ngOnInit() {
this._dashService.getOrder().subscribe(order => {
this.orders = order;
console.log(this.orders);
})
}
