This commit is contained in:
Bluepr1nt
2017-04-04 21:59:04 +02:00
parent e2b28b0c7c
commit 25a3f41af0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ export class LineChartComponent implements OnInit {
public lineChartData:Array<any> = [
{data: [1,0,0,0,0,0,1], label: 'Series A'}
];
public lineChartLabels:Array<any> = ['January', 'February', 'March', 'April', 'May', 'June', 'July'];
public lineChartLabels:Array<any> = ['', '', '', '', '', '', ''];
public lineChartOptions:any = {
responsive: true,
title: {
+1 -1
View File
@@ -9,7 +9,7 @@ import { LabelData } from './label-data';
@Injectable()
export class DataService {
private baseUrl: string = 'http://localhost:3000/webapi/data';
private baseUrl: string = '/webapi/data';
constructor(private http : Http){}