New graph types added (not all working unfortunately), new section added for table views and probably a lot of messy code too!
This commit is contained in:
parent
6376d570af
commit
471b56f2a8
15 changed files with 368 additions and 26 deletions
|
@ -12,6 +12,7 @@ interface ChartData {
|
|||
selector: 'widget-graph',
|
||||
templateUrl: 'graph-widget.component.html',
|
||||
})
|
||||
|
||||
export class GraphWidget implements OnInit {
|
||||
@Input() public graphName: string;
|
||||
@Input() public graphTitle = 'Graph';
|
||||
|
@ -63,7 +64,7 @@ export class GraphWidget implements OnInit {
|
|||
},
|
||||
elements: {
|
||||
line: {
|
||||
borderWidth: 1
|
||||
borderWidth: 2
|
||||
},
|
||||
point: {
|
||||
radius: 4,
|
||||
|
|
Reference in a new issue