score:33

Accepted answer

as per the readme of ng2-charts, you can use options to change any properties not exposed by ng2-charts itself.

add [options]="options" to your template, and an options variable to your component:

private options: any = {
  legend: { position: 'left' }
}

Related Query

More Query from same tag