Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/backbone.js/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
angular2会有剑道电子表格吗?_Angular_Kendo Ui_Telerik_Spreadsheet - Fatal编程技术网

angular2会有剑道电子表格吗?

angular2会有剑道电子表格吗?,angular,kendo-ui,telerik,spreadsheet,Angular,Kendo Ui,Telerik,Spreadsheet,angular2在任何即将发布的版本中是否会有剑道电子表格或导出到excel的表格。?我们希望电子表格版本为angular2,因为我们正在使用angular1版本并希望升级。这是可能的 网格示例 电子表格示例 如果没有,是否有办法将电子表格合并到angular2应用程序中?如果您想访问另一个脚本中的方法,则使用哪个angular2版本无关紧要。这就是使用angular2的方法 <script src="js/jquery.min.js"></script> <sc

angular2在任何即将发布的版本中是否会有剑道电子表格或导出到excel的表格。?我们希望电子表格版本为angular2,因为我们正在使用angular1版本并希望升级。这是可能的

网格示例

电子表格示例


如果没有,是否有办法将电子表格合并到angular2应用程序中?

如果您想访问另一个脚本中的方法,则使用哪个angular2版本无关紧要。这就是使用angular2的方法

<script src="js/jquery.min.js"></script>
<script src="js/jszip.min.js"></script>
<script src="js/kendo.all.min.js"></script>

欢迎来到SO。关于参考工具、库、教程的问题不鼓励这样做。请通过其他渠道询问。
import { Injectable } from '@angular/core';

declare graphs:any;
//graphs represents the scripts you have imported from index.html 

@Injectable()
export class GraphService {

  constructor() { }

  dosomethingWithgraphs(){
   graphs.methods()//accessing its methods
   graphs.properties//accessing its properties
  }
}