|
|
|
@ -98,11 +98,11 @@ export class CoreSeries<T extends Serie> {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
get leftYRelatedSeries(): Array<T> { |
|
|
|
|
return this.visibleSeries.filter(serie => serie.yOrientation = yAxisOrientation.LEFT); |
|
|
|
|
return this.visibleSeries.filter(serie => serie.yOrientation === yAxisOrientation.LEFT); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
get rightYRelatedSeries(): Array<T> { |
|
|
|
|
return this.visibleSeries.filter(serie => serie.yOrientation = yAxisOrientation.RIGHT); |
|
|
|
|
return this.visibleSeries.filter(serie => serie.yOrientation === yAxisOrientation.RIGHT); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
get areSeriesForY1Exist(): boolean { |
|
|
|
|