数式にGAUGEKPISPARKLINE関数を使用してゲージKPIスパークラインを作成できます: =GAUGEKPISPARKLINE(targetValue,currentValue,minValue,maxValue,showLabel?,targetValueLabel?,currentValueLabel?,minValueLabel?,maxValueLabel?,fontArray?,minAngle?,maxAngle?,radiusRatio?,gaugeType?,colorRange?).
この関数には次のパラメーターがあります:
targetValue:(必須)[Number]ゲージKPIスパークラインのターゲット値、ターゲット値はminValueとmaxValueの間にあります。
currentValue:(必須)[Number]ゲージKPIスパークラインの現在の値、現在の値はminValueとmaxValueの間にあります。
minValue:(必須)[Number]ゲージKPIスパークラインの最小値、minValueはmaxValueより小さい値です。
maxValue:(必須)[Number]KPIスパークラインの最大値、maxValueはminValueよりも大きい値です。
showLabel:(オプション)[Boolean]targetValue、currentValue、minValue、maxValueのラベルを表示するかどうか。showLabelがfalseの場合、ラベルは決して表示されません。showLabelがtrueの場合、セルの幅が十分に広くないか、またはセルの高さが1つのラベルを表示するのに十分な高さでないとき、セルの幅と高さが十分になるまで、グラフと他のラベルが表示され、グラフとラベルの両方を表示します。デフォルト値はtrueです。
targetValueLabel:(オプション)[String]ターゲット値の表示ラベル、デフォルト値はtargetValueと同じです。
currentValueLabel:(オプション)[String]現在の値の表示ラベル、デフォルト値はcurrentValueと同じです。
minValueLabel:(オプション)[String]最小値の表示ラベル、デフォルト値はminValueと同じです。
maxValueLabelmaxValueLabel:(オプション)[String]最大値の表示ラベル、デフォルト値はmaxValueと同じです。
fontArray:(オプション)[CalcArray]fontArrayには、CSSフォント形式に従う4つのフォント文字列項目があります。各フォント文字列は、ターゲット値のラベル(デフォルト値は「16px Calibri」)、現在値のラベル(デフォルト値は「太字 22px Calibri」)、最小値のラベル(デフォルト値は「12px Calibri」)、最大値のラベル(デフォルト値は「12px Calibri」)のラベルに対応したフォントと一致します。showLabelがtrueの場合にのみ機能します。
minAngle:(オプション)[Number]円タイプの最小角度値。minAngleはmaxAngleより小さくする必要があります。(0は12時の位置、-90は9時の位置、90は3時の位置、-180、180は6時の位置です)。gaugeTypeが0(円タイプ)の場合にのみ機能します。デフォルト値は-90です。
maxAngle:(オプション)[Number]円タイプの最大角度値。maxAngleはminAngleより大きくする必要があります。(0は12時の位置、-90は9時の位置、90は3時の位置、-180、180は6時の位置です)。gaugeTypeが0(円タイプ)の場合にのみ機能します。デフォルト値は90です。
radiusRatio:(オプション)[Number]内側の円の半径を外側の円の半径で割った値がradiusRatio(0から1の間)で、外側の円の半径の値はセルサイズによって決まります。gaugeTypeが0(円タイプ)の場合にのみ機能します。デフォルト値は0です。
gaugeType:(オプション)[Number]KPIスパークラインタイプ、0は円タイプ、1は垂直バー、2は水平バーを表します。デフォルトは円タイプです。
colorRange:(繰り返し可能なオプション)[CalcArray]特別な色の範囲。最初の項目は範囲の開始値です。2番目の項目は範囲の終了値です。3番目の項目はstartValueとendValueの間の範囲の色です。開始値は終了値より小さくし、両方ともminValueとmaxValueの間にある必要があります。デフォルトの色の範囲はminValueからmaxValueで、薄い灰色で塗りつぶされます。
import { Component, NgModule, enableProdMode } from '@angular/core';
import { bootstrapApplication, BrowserModule } from '@angular/platform-browser';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { SpreadSheetsModule } from '@mescius/spread-sheets-angular';
import GC from '@mescius/spread-sheets';
import '@mescius/spread-sheets-resources-ja';
GC.Spread.Common.CultureManager.culture("ja-jp");
import './styles.css';
@Component({
standalone: true,
imports: [SpreadSheetsModule, BrowserModule],
selector: 'app-component',
templateUrl: 'src/app.component.html'
})
export class AppComponent {
minValue = 0;
maxValue = 50000;
color1 = '#F7A711';
startValue1 = 0;
endValue1 = 10000;
color2 = '#BBBBBB';
startValue2 = 10000;
endValue2 = 25000;
color3 = '#82BC00';
startValue3 = 25000;
endValue3 = 50000;
spread: GC.Spread.Sheets.Workbook;
hostStyle = {
width: 'calc(100% - 280px)',
height: '100%',
overflow: 'hidden',
float: 'left'
};
maxValueChange(e: any) {
let value = e.target.value;
this.maxValue = value;
this.endValue3 = value;
this.applyChanges();
}
minValueChange(e: any) {
let value = e.target.value;
this.minValue = value;
this.startValue1 = value;
this.applyChanges();
}
endValue1Change(e: any) {
let value = e.target.value;
this.endValue1 = value;
this.startValue2 = value;
this.applyChanges();
}
endValue2Change(e: any) {
let value = e.target.value;
this.endValue2 = value;
this.startValue3 = value;
this.applyChanges();
}
color1Change(e: any) {
let value = e.target.value;
this.color1 = value;
this.applyChanges();
}
color2Change(e: any) {
let value = e.target.value;
this.color2 = value;
this.applyChanges();
}
color3Change(e: any) {
let value = e.target.value;
this.color3 = value;
this.applyChanges();
}
applyChanges() {
let sheet = this.spread.getActiveSheet();
var gaugeType = this.spread.getActiveSheetIndex(); // same as sheet index
var start = 1,end=7;
if(gaugeType == 2)
{
start = 2;
end = 8;
}
for (var i = start; i < end; i++) {
var goalcolumn = String.fromCharCode(65 + i)+"3";
var actualcolumn = String.fromCharCode(65 + i)+"4";
var row = 4; var column = i;
if(gaugeType == 2)//for horizontal gauge
{
goalcolumn = "B"+(i+1);
actualcolumn = "C"+(i+1);
row=i;
column=3;
}
sheet.setFormula(row,column,'=GAUGEKPISPARKLINE('+goalcolumn+','+actualcolumn+','+this.minValue
+','+this.maxValue
+',TRUE,TEXT('+goalcolumn+',"$0,K"),TEXT('+actualcolumn+',"$0,K"),TEXT('+this.minValue
+',"$0,K"),TEXT('+this.maxValue
+',"$0,K"),,-90,90,0.5,'+gaugeType+',{'
+ this.startValue1 +','+this.endValue1 +',"'+this.color1 +'"},{'
+ this.startValue2 +','+this.endValue2 +',"'+this.color2 +'"},{'
+ this.startValue3 +','+this.endValue3 +',"'+this.color3+'"})');
}
}
initSpread(event:any){
this.spread=event.spread;
let spread = this.spread;
spread.options.newTabVisible = false;
spread.setSheetCount(3);
spread.sheets[0].name("Circle");
spread.sheets[1].name("Vertical");
spread.sheets[2].name("Horizontal");
this.initGaugeKPISparklineCircle(spread.sheets[0]);
this.initGaugeKPISparklineVertical(spread.sheets[1]);
this.initGaugeKPISparklineHorizontal(spread.sheets[2]);
}
initGaugeKPISparklineCircle(sheet: GC.Spread.Sheets.Worksheet) {
sheet.suspendPaint();
sheet.setArray(1, 0, [
["Teams","Team A","Team B","Team C","Team D","Team E","Team F"],
["Goal",25000,22000,45000,39000,49000,16000],
["Amount Raised",24000,23000,45500,29000,49500,25000],
["Diagram"]
]);
//styling
for(var i = 0; i<7; i++)
{
sheet.setColumnWidth(i, 150);
}
sheet.setRowHeight(4, 160);
sheet.setRowHeight(0, 35);
sheet.addSpan(0, 0, 1, 7);
sheet.getCell(0, 0).value("Fundraising Teams KPI")
.font("17px Arial")
.vAlign(GC.Spread.Sheets.VerticalAlign.center)
.backColor("gray")
.foreColor("white");
sheet.getRange(1, 0, 4, 1)
.font("bold 13px Arial")
.setBorder(new GC.Spread.Sheets.LineBorder("black", GC.Spread.Sheets.LineStyle.thin), { right: true });
sheet.getRange(1,1,3,6).hAlign(GC.Spread.Sheets.HorizontalAlign.center).formatter("$0,K");
sheet.setFormula(4,1,'=GAUGEKPISPARKLINE(B3,B4,0,50000,TRUE,TEXT(B3,"$0,K"),TEXT(B4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,-90,90,0.5,0,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,2,'=GAUGEKPISPARKLINE(C3,C4,0,50000,TRUE,TEXT(C3,"$0,K"),TEXT(C4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,-90,90,0.5,0,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,3,'=GAUGEKPISPARKLINE(D3,D4,0,50000,TRUE,TEXT(D3,"$0,K"),TEXT(D4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,-90,90,0.5,0,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,4,'=GAUGEKPISPARKLINE(E3,E4,0,50000,TRUE,TEXT(E3,"$0,K"),TEXT(E4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,-90,90,0.5,0,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,5,'=GAUGEKPISPARKLINE(F3,F4,0,50000,TRUE,TEXT(F3,"$0,K"),TEXT(F4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,-90,90,0.5,0,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,6,'=GAUGEKPISPARKLINE(G3,G4,0,50000,TRUE,TEXT(G3,"$0,K"),TEXT(G4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,-90,90,0.5,0,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.resumePaint();
}
initGaugeKPISparklineVertical(sheet: GC.Spread.Sheets.Worksheet) {
sheet.suspendPaint();
sheet.setArray(1, 0, [
["Teams","Team A","Team B","Team C","Team D","Team E","Team F"],
["Goal",25000,22000,45000,39000,49000,16000],
["Amount Raised",24000,23000,45500,29000,49500,25000],
["Diagram"]
]);
//styling
for(var i = 0; i<7; i++)
{
sheet.setColumnWidth(i, 150);
}
sheet.setRowHeight(4, 160);
sheet.setRowHeight(0, 35);
sheet.addSpan(0, 0, 1, 7);
sheet.getCell(0, 0).value("Fundraising Teams KPI")
.font("17px Arial")
.vAlign(GC.Spread.Sheets.VerticalAlign.center)
.backColor("gray")
.foreColor("white");
sheet.getRange(1, 0, 4, 1)
.font("bold 13px Arial")
.setBorder(new GC.Spread.Sheets.LineBorder("black", GC.Spread.Sheets.LineStyle.thin), { right: true });
sheet.getRange(1,1,3,6).hAlign(GC.Spread.Sheets.HorizontalAlign.center).formatter("$0,K");
sheet.setFormula(4,1,'=GAUGEKPISPARKLINE(B3,B4,0,50000,TRUE,TEXT(B3,"$0,K"),TEXT(B4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,1,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,2,'=GAUGEKPISPARKLINE(C3,C4,0,50000,TRUE,TEXT(C3,"$0,K"),TEXT(C4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,1,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,3,'=GAUGEKPISPARKLINE(D3,D4,0,50000,TRUE,TEXT(D3,"$0,K"),TEXT(D4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,1,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,4,'=GAUGEKPISPARKLINE(E3,E4,0,50000,TRUE,TEXT(E3,"$0,K"),TEXT(E4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,1,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,5,'=GAUGEKPISPARKLINE(F3,F4,0,50000,TRUE,TEXT(F3,"$0,K"),TEXT(F4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,1,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,6,'=GAUGEKPISPARKLINE(G3,G4,0,50000,TRUE,TEXT(G3,"$0,K"),TEXT(G4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,1,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.resumePaint();
}
initGaugeKPISparklineHorizontal(sheet: GC.Spread.Sheets.Worksheet) {
sheet.suspendPaint();
sheet.setArray(1, 0, [
["Teams","Goal","Amount Raised","Diagram"],
["Team A",25000,24000],["Team B",22000,23000],["Team C",45000,45500],
["Team D",39000,29000],["Team E",49000,49500],["Team F",16000,25000]
]);
//styling
for(var i = 0; i<3; i++)
{
sheet.setColumnWidth(i, 150);
}
sheet.setRowHeight(0, 35);
sheet.setRowHeight(1, 30);
for(var i = 2; i<8; i++)
{
sheet.setRowHeight(i, 80);
}
sheet.setColumnWidth(3, 260);
sheet.addSpan(0, 0, 1, 4);
sheet.getCell(0, 0).value("Fundraising Teams KPI")
.font("17px Arial")
.vAlign(GC.Spread.Sheets.VerticalAlign.center)
.backColor("gray")
.foreColor("white");
sheet.getRange(1, 0, 1, 4)
.font("bold 13px Arial")
.setBorder(new GC.Spread.Sheets.LineBorder("black", GC.Spread.Sheets.LineStyle.thin), { bottom: true });
sheet.getRange(2,1,6,3).hAlign(GC.Spread.Sheets.HorizontalAlign.center).formatter("$0,K");
sheet.getRange(1,0,7,4).vAlign(GC.Spread.Sheets.VerticalAlign.center);
sheet.setFormula(2,3,'=GAUGEKPISPARKLINE(B3,C3,0,50000,TRUE,TEXT(B3,"$0,K"),TEXT(C3,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,2,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(3,3,'=GAUGEKPISPARKLINE(B4,C4,0,50000,TRUE,TEXT(B4,"$0,K"),TEXT(C4,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,2,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(4,3,'=GAUGEKPISPARKLINE(B5,C5,0,50000,TRUE,TEXT(B5,"$0,K"),TEXT(C5,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,2,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(5,3,'=GAUGEKPISPARKLINE(B6,C6,0,50000,TRUE,TEXT(B6,"$0,K"),TEXT(C6,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,2,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(6,3,'=GAUGEKPISPARKLINE(B7,C7,0,50000,TRUE,TEXT(B7,"$0,K"),TEXT(C7,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,2,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.setFormula(7,3,'=GAUGEKPISPARKLINE(B8,C8,0,50000,TRUE,TEXT(B8,"$0,K"),TEXT(C8,"$0,K"),TEXT(0,"$0,K"),TEXT(50000,"$0,K"),,0,0,0,2,{0,10000,"#F7A711"},{10000,25000,"#BBBBBB"},{25000,50000,"#82BC00"})');
sheet.resumePaint();
}
}
enableProdMode();
bootstrapApplication(AppComponent);
<!doctype html>
<html style="height:100%;font-size:14px;">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="$DEMOROOT$/ja/angular/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css">
<!-- Polyfills -->
<script src="$DEMOROOT$/ja/angular/node_modules/core-js/client/shim.min.js"></script>
<script src="$DEMOROOT$/ja/angular/node_modules/zone.js/fesm2015/zone.min.js"></script>
<!-- SystemJS -->
<script src="$DEMOROOT$/ja/angular/node_modules/systemjs/dist/system.js"></script>
<script src="systemjs.config.js"></script>
<script>
// workaround to load 'rxjs/operators' from the rxjs bundle
System.import('rxjs').then(function (m) {
System.import('@angular/compiler');
System.set(SystemJS.resolveSync('rxjs/operators'), System.newModule(m.operators));
System.import('$DEMOROOT$/ja/lib/angular/license.ts');
System.import('./src/app.component');
});
</script>
</head>
<body>
<app-component></app-component>
</body>
</html>
<div class="sample-tutorial">
<gc-spread-sheets [hostStyle]="hostStyle" (workbookInitialized)="initSpread($event)" [newTabVisible] = false>
<gc-worksheet>
</gc-worksheet>
<gc-worksheet>
</gc-worksheet>
</gc-spread-sheets>
<div class="options-container">
<div class="option-row">
<label for="color1">ゲージKPIの設定</label>
</div>
<hr>
<div class="option-row">
<label for="barSize"><u>最小値:</u></label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="minValue" [value]="minValue" (change) = "minValueChange($event)"/>
</div>
<div class="option-row">
<label for="barSize"><u>最大値:</u></label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="maxValue" [value]="maxValue" (change) = "maxValueChange($event)"/>
</div>
<hr>
<div class="option-row">
<label for="range1"><u>範囲 1</u></label>
</div>
<div class="option-row">
<label for="colorScheme">色:</label>
<select id="color1" [value]="color1" (change) = "color1Change($event)" style="margin: 0 20px 0 6px">
<option value="#FFFFFF">White</option>
<option value="#000000">Black</option>
<option value="#F7A711" selected>Orange</option>
<option value="#DDDDDD">LightGrey</option>
<option value="#BBBBBB">Grey</option>
<option value="#999999">DarkGrey</option>
<option value="#82BC00">Green</option>
</select>
</div>
<div class="option-row">
<label for="startValue1">開始値:</label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="startValue1" [value]="startValue1" disabled/>
</div>
<div class="option-row">
<label for="barSize">終了値:</label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="endValue1" [value]="endValue1" (change) = "endValue1Change($event)"/>
</div>
<hr>
<div class="option-row">
<label for="range1"><u>範囲 2</u></label>
</div>
<div class="option-row">
<label for="colorScheme">色:</label>
<select id="color2" [value]="color2" (change) = "color2Change($event)" style="margin: 0 20px 0 6px">
<option value="#FFFFFF">White</option>
<option value="#000000">Black</option>
<option value="#F7A711">Orange</option>
<option value="#DDDDDD">LightGrey</option>
<option value="#BBBBBB" selected>Grey</option>
<option value="#999999">DarkGrey</option>
<option value="#82BC00">Green</option>
</select>
</div>
<div class="option-row">
<label for="startValue2">開始値:</label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="startValue2" [value]="startValue2" disabled/>
</div>
<div class="option-row">
<label for="barSize">終了値:</label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="endValue2" [value]="endValue2" (change) = "endValue2Change($event)"/>
</div>
<hr>
<div class="option-row">
<label for="range3"><u>範囲 3</u></label>
</div>
<div class="option-row">
<label for="color3">色:</label>
<select id="color3" [value]="color3" (change) = "color3Change($event)" style="margin: 0 20px 0 6px">
<option value="#FFFFFF">White</option>
<option value="#000000">Black</option>
<option value="#F7A711">Orange</option>
<option value="#DDDDDD">LightGrey</option>
<option value="#BBBBBB">Grey</option>
<option value="#999999">DarkGrey</option>
<option value="#82BC00" selected>Green</option>
</select>
</div>
<div class="option-row">
<label for="startValue1">開始値:</label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="startValue3" [value]="startValue3" disabled/>
</div>
<div class="option-row">
<label for="barSize">終了値:</label>
<input type="text" style="margin: 0 20px 0 6px;width:100px;" id="endValue3" [value]="endValue3" disabled/>
</div>
</div>
</div>
.sample {
position: relative;
height: 100%;
overflow: auto;
}
.sample::after {
display: block;
content: "";
clear: both;
}
.sample-tutorial {
position: relative;
height: 100%;
overflow: hidden;
}
.sample-spreadsheets {
width: calc(100% - 280px);
height: 100%;
overflow: hidden;
float: left;
}
.options-container {
float: right;
width: 280px;
padding: 12px;
height: 100%;
box-sizing: border-box;
background: #fbfbfb;
overflow: auto;
}
.option-row {
font-size: 14px;
padding: 5px;
margin-top: 10px;
}
.option-group {
margin-bottom: 12px;
}
input,
select {
padding: 4px 6px;
box-sizing: border-box;
}
p{
padding:2px 10px;
background-color:#F4F8EB;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
(function (global) {
System.config({
transpiler: 'ts',
typescriptOptions: {
tsconfig: true
},
meta: {
'typescript': {
"exports": "ts"
},
'*.css': { loader: 'css' }
},
paths: {
// paths serve as alias
'npm:': 'node_modules/'
},
// map tells the System loader where to look for things
map: {
'core-js': 'npm:core-js/client/shim.min.js',
'zone': 'npm:zone.js/fesm2015/zone.min.js',
'rxjs': 'npm:rxjs/dist/bundles/rxjs.umd.min.js',
'@angular/core': 'npm:@angular/core/fesm2022',
'@angular/common': 'npm:@angular/common/fesm2022/common.mjs',
'@angular/compiler': 'npm:@angular/compiler/fesm2022/compiler.mjs',
'@angular/platform-browser': 'npm:@angular/platform-browser/fesm2022/platform-browser.mjs',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/fesm2022/platform-browser-dynamic.mjs',
'@angular/common/http': 'npm:@angular/common/fesm2022/http.mjs',
'@angular/router': 'npm:@angular/router/fesm2022/router.mjs',
'@angular/forms': 'npm:@angular/forms/fesm2022/forms.mjs',
'jszip': 'npm:jszip/dist/jszip.min.js',
'typescript': 'npm:typescript/lib/typescript.js',
'ts': './plugin.js',
'css': 'npm:systemjs-plugin-css/css.js',
'plugin-babel': 'npm:systemjs-plugin-babel/plugin-babel.js',
'systemjs-babel-build':'npm:systemjs-plugin-babel/systemjs-babel-browser.js',
'tslib':'npm:tslib/tslib.js',
'@mescius/spread-sheets': 'npm:@mescius/spread-sheets/index.js',
'@mescius/spread-sheets-resources-ja': 'npm:@mescius/spread-sheets-resources-ja/index.js',
'@mescius/spread-sheets-angular': 'npm:@mescius/spread-sheets-angular/fesm2020/mescius-spread-sheets-angular.mjs',
'@grapecity/jsob-test-dependency-package/react-components': 'npm:@grapecity/jsob-test-dependency-package/react-components/index.js'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
src: {
defaultExtension: 'ts',
meta: {
"*.component.ts": {
loader: "system.component-loader.js"
}
}
},
rxjs: {
defaultExtension: 'js'
},
"node_modules": {
defaultExtension: 'js'
},
"node_modules/@angular": {
defaultExtension: 'mjs'
},
"@mescius/spread-sheets-angular": {
defaultExtension: 'mjs'
},
'@angular/core': {
defaultExtension: 'mjs',
main: 'core.mjs'
}
}
});
})(this);