Skip to content

Commit

Permalink
Fixed #186
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed Apr 16, 2016
1 parent 4672ca9 commit bb26f1c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion components/chart/barchart/barchart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,8 @@ export class BarChart implements AfterViewInit, OnDestroy, DoCheck {
barShowStroke: this.barShowStroke,
barStrokeWidth: this.barStrokeWidth,
barValueSpacing: this.barValueSpacing,
barDatasetSpacing: this.barDatasetSpacing
barDatasetSpacing: this.barDatasetSpacing,
legendTemplate: this.legendTemplate
});

if(this.legend) {
Expand Down
3 changes: 2 additions & 1 deletion components/chart/linechart/linechart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ export class LineChart implements AfterViewInit, OnDestroy, DoCheck {
pointHitDetectionRadius: this.pointHitDetectionRadius,
datasetStroke: this.datasetStroke,
datasetStrokeWidth: this.datasetStrokeWidth,
datasetFill: this.datasetFill
datasetFill: this.datasetFill,
legendTemplate: this.legendTemplate
});

if(this.legend) {
Expand Down
3 changes: 2 additions & 1 deletion components/chart/polarareachart/polarareachart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ export class PolarAreaChart implements AfterViewInit, OnDestroy, DoCheck {
animationSteps: this.animationSteps,
animationEasing: this.animationEasing,
animateRotate: this.animateRotate,
animateScale: this.animateScale
animateScale: this.animateScale,
legendTemplate: this.legendTemplate
});

if(this.legend) {
Expand Down
3 changes: 2 additions & 1 deletion components/chart/radarchart/radarchart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,8 @@ export class RadarChart implements AfterViewInit, OnDestroy, DoCheck {
pointHitDetectionRadius: this.pointHitDetectionRadius,
datasetStroke: this.datasetStroke,
datasetStrokeWidth: this.datasetStrokeWidth,
datasetFill: this.datasetFill
datasetFill: this.datasetFill,
legendTemplate: this.legendTemplate
});

if(this.legend) {
Expand Down

0 comments on commit bb26f1c

Please sign in to comment.