TypeError:无法读取nativescript中未定义的属性“cartesianChart”

TypeError:无法读取nativescript中未定义的属性“cartesianChart”,nativescript,angular2-nativescript,nativescript-telerik-ui,Nativescript,Angular2 Nativescript,Nativescript Telerik Ui,我在nativescript中创建了一个新的。我试图学习nativescript中的图表,但它是give TypeError:无法读取未定义错误的属性“cartesianChart” home.componet.html <RadCartesianChart tkExampleTitle tkToggleNavButton> <CategoricalAxis tkCartesianHorizontalAxis></CategoricalAxis> <Li

我在nativescript中创建了一个新的。我试图学习nativescript中的图表,但它是give TypeError:无法读取未定义错误的属性“cartesianChart”

home.componet.html

<RadCartesianChart tkExampleTitle tkToggleNavButton>
<CategoricalAxis tkCartesianHorizontalAxis></CategoricalAxis>
<LinearAxis tkCartesianVerticalAxis></LinearAxis>
<LineSeries tkCartesianSeries [items]="categoricalSource" categoryProperty="Country" valueProperty="Amount"></LineSeries>
home.component.ts

    import { Component, OnInit,ViewChild,AfterViewInit ,ElementRef} from '@angular/core';
import { WebView, LoadEventData } from "ui/web-view";
import { ObservableArray } from "tns-core-modules/data/observable-array";
import{DataService} from "../data.service"
import{Country} from "../country"

@Component({
  moduleId: module.id,
  selector: 'app-home',
  providers: [DataService],
  templateUrl: './home.component.html',
  styleUrls: ['./home.component.scss']
})
export class HomeComponent implements OnInit {

  private _categoricalSource: ObservableArray<Country>;

  constructor(private _dataService: DataService) { }

  get categoricalSource(): ObservableArray<Country> {
      return this._categoricalSource;
  }

  ngOnInit() {
      this._categoricalSource = new ObservableArray(this._dataService.getCategoricalSource());
  }

}

我也面临同样的问题,通过删除android平台并再次添加它来解决

tns platform remove android
tns platform add android