various fixes to dashboard stuff

This commit is contained in:
Finn 2019-07-12 17:12:01 +01:00
parent c0570cddf8
commit 05506ed1b6
5 changed files with 10 additions and 21 deletions

View file

@ -4,8 +4,7 @@ import { Color } from 'ng2-charts';
@Component({
selector: 'app-bubble-chart',
templateUrl: './bubble-chart.component.html',
styleUrls: ['./bubble-chart.component.scss']
templateUrl: './bubble-panel.component.html',
})
export class BubbleChartComponent implements OnInit {
public bubbleChartOptions: ChartOptions = {
@ -95,4 +94,4 @@ export class BubbleChartComponent implements OnInit {
const data = Array.apply(null, { length: numberOfPoints }).map(r => this.randomPoint(30));
this.bubbleChartData[0].data = data;
}
}
}