Angularアプリケーションでリボンコンテナを追加するには、次の手順を実行します。
コマンドプロンプト |
コードのコピー
|
---|---|
npm install -g @angular/cli
ng new designercomponent
cd designercomponent
npm start
|
コマンドプロンプト |
コードのコピー
|
---|---|
npm install @grapecity/spread-excelio npm install @grapecity/spread-sheets npm install @grapecity/spread-sheets-barcode npm install @grapecity/spread-sheets-charts npm install @grapecity/spread-sheets-languagepackages npm install @grapecity/spread-sheets-pdf npm install @grapecity/spread-sheets-print npm install @grapecity/spread-sheets-shapes npm install @grapecity/spread-sheets-resources-ja npm install @grapecity/spread-sheets-pivot-addon npm install @grapecity/spread-sheets-designer npm install @grapecity/spread-sheets-designer-resources-ja npm install @grapecity/spread-sheets-angular npm install @grapecity/spread-sheets-designer-angular |
app.module.ts |
コードのコピー
|
---|---|
import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppComponent } from './app.component'; import "@grapecity/spread-sheets-designer-resources-ja"; import { DesignerModule } from "@grapecity/spread-sheets-designer-angular"; @NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, DesignerModule ], providers: [], bootstrap: [AppComponent] }) export class AppModule { } |
styles.css |
コードのコピー
|
---|---|
@import '@grapecity/spread-sheets-designer/styles/gc.spread.sheets.designer.min.css';
@import '@grapecity/spread-sheets/styles/gc.spread.sheets.excel2013white.css';
|
app.component.html |
コードのコピー
|
---|---|
<designer [props]="props"></designer> |
app.component.ts |
コードのコピー
|
---|---|
import { Component } from '@angular/core'; import * as GC from '@grapecity/spread-sheets'; import '@grapecity/spread-sheets-resources-ja'; import '@grapecity/spread-sheets-designer-resources-ja'; import * as GcDesigner from '@grapecity/spread-sheets-designer'; GC.Spread.Common.CultureManager.culture('ja-jp'); @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent { designer: any; spread: any; props = { styleInfo: 'width: 100%; height: 900px', }; } |
コマンドプロンプト |
コードのコピー
|
---|---|
npm start |
designerInitializedイベントを使用してSpreadJSインスタンスにアクセスすることができます。designerInitializedイベントを使用するには、前項の手順 1 ~ 4を完了してから、次の手順を実行します。
app.component.html |
コードのコピー
|
---|---|
<designer (designerInitialized)="afterDesignerInit($event)" [props]="props"></designer> |
app.component.ts |
コードのコピー
|
---|---|
export class AppComponent { props = { styleInfo: "width: 100%; height: 900px", config: null } afterDesignerInit(e: any) { //ホストされたSpreadインスタンスです。 var workbook = e.designer.getWorkbook(); var sheet = workbook.getActiveSheet(); sheet.setValue(1, 1, 'Test'); } } |
コマンドプロンプト |
コードのコピー
|
---|---|
npm start |
Angular使用時は、SpreadJS、リボンコンテナのほか、ExcelIOに対してもライセンスキーの設定が必要となります。ExcelIOのライセンスキーにはSpreadJSのライセンスキーを設定します。
TypeScript |
コードのコピー
|
---|---|
import '@grapecity/spread-sheets-designer-resources-ja'; import * as GC from '@grapecity/spread-sheets'; import '@grapecity/spread-sheets-designer'; import * as ExcelIO from "@grapecity/spread-excelio"; var sjsLicense = "sjs-distribution-key"; GC.Spread.Sheets.LicenseKey = sjsLicense; (ExcelIO as any).LicenseKey = sjsLicense; (GC.Spread.Sheets as any).Designer.LicenseKey = "designer-component-distribution-key"; |