For questions regarding programming in Angular specific to version 13. Please include all relevant tags on your question; e.g., [Angular], [TypeScript], etc.
Questions tagged [angular13]
562 questions
-2
votes
1 answer
After removed css, why is it taking same effect?
Here I am adding images of my work. I stuck here because after removing CSS it's still working.
see in this image.In this image it has width:30% when I have been removed in my project my source file. How can I remove it? what is the problem that I…

Kumar sunil
- 5
- 4
-2
votes
2 answers
How to chain api calls using rxjs?
I understand that there are lot of questions on the title's subject but I wasn't able to find clear and concise question/response that would help me with following.
Assume we have x amount of web api calls that return observables…

krul
- 2,211
- 4
- 30
- 49
-2
votes
1 answer
Highcharts - Type 'null' is not assignable to type 'string | GradientColorObject | PatternObject | undefined'.ts(2322)
While creating a simple pie chart in Angular 13, getting following error message.
Want to assign null value to borderColor but it is showing this error. Assigned colors in series.

Yogesh Nikam
- 443
- 1
- 4
- 13
-3
votes
1 answer
Getting error while executing angular universal app
I am working angular 13 application and trying to integrate universal.
I have followed the official document https://angular.io/guide/universal to integrate.
Angular version
Angular CLI: 13.3.8
Node: 14.19.3
Package Manager: npm 6.14.17
OS: linux…

Lakhvir Singh
- 664
- 4
- 15
- 35
-3
votes
1 answer
What causes the "only arrays and iterables are allowed" error in this Angular 13 app?
I am working on an e-commerce app who's front-end is made in Angular 13.
I am trying to fetch products from an API and display them as cards.
For this purpose, in app\app.module.ts I have:
import { NgModule } from '@angular/core';
import {…

Razvan Zamfir
- 4,209
- 6
- 38
- 252
-3
votes
2 answers
ngFor JSON array of object async await angular 13 not binding
Here is my typescript page.
export class ListUsersComponent implements OnInit {
users: any;
constructor(){}
async ngOnInit() {
await this.loadUser();
}
async loadUser() {
const us = this.userService.getUsers().pipe(
…
user10668235