Skip to content

Commit

Permalink
fix(pie&doughnut): Sizing issue on doughnut and pie charts (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
BradyNadeau authored and valorkin committed Oct 7, 2016
1 parent dd70b20 commit cfb1033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/charts/charts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ declare var Chart:any;

@Component({
selector: 'base-chart',
template: `<canvas style="width: 100%; height: 100%;"></canvas>`,
template: `<canvas width="100%" height="100%"></canvas>`,
styles: [`:host { display: block; }`]
})
export class BaseChartComponent implements OnDestroy, OnChanges, OnInit {
Expand Down

0 comments on commit cfb1033

Please sign in to comment.