Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export class BarHorizontal2DComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export class BarHorizontalNormalizedComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class BarHorizontalStackedComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export class BarVertical2DComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export class BarVerticalNormalizedComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export class BarVerticalStackedComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class SeriesVerticalComponent implements OnChanges {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class BubbleChartComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class BubbleSeriesComponent implements OnChanges, OnInit {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export class CircleSeriesComponent implements OnChanges, OnInit {
this.gradientFill = `url(#${this.gradientId})`;

if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ export class LineChartComponent extends BaseChartComponent implements OnInit {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class LineComponent implements OnChanges, OnInit {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export class PolarChartComponent extends BaseChartComponent implements OnInit {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export class BubbleChartInteractiveComponent extends BaseChartComponent {

ngOnInit() {
if (isPlatformServer(this.platformId)) {
this.isSSR = true;
this.isSSR = false // skip;
}
}

Expand Down