8:00 – 3:00 SR
- DB backups
- Deployed FR fixes
- Worked through validation bugs
- Adding a clearAllConnections() method to WebGlComponents that clears out the source and target arrays of the current model and the pointed-to models
8:00 – 3:00 SR
8:00 – 4:30 SR
8:00 – 4:00 SR
8:00 – 4:30 SR
8:00 – 4:30 SR
export interface I3DChartDataElement{
[label:string]:IMinMax;
}
export interface I3DChartDataCollection{
[objectName:string]:IChartDataElement;
}
export interface IChartData{
type:string;
minMax:IChartBoundries;
mappings:IChartDataMapping[];
data?:IChartDataCollection;
data3D?:I3DChartDataCollection;
}
export interface IChartMessage{
type:string;
name:string;
data?:IChartDataElement;
data3D?:I3DChartDataElement;
}
8:00 – 3:00 SR
8:00 – 4:00 SR
8:00 – 4:00
8:00 – 4:30 SR
8:00 – 4:00 SR
7:30 – 1:30SR
7:30 – 4:00 SR
7:30 – 4:00 SR
export class ChartInfo extends NovettaUtils.ATSBase{
public cSeries:CartesianSeries[];
constructor() {
this.cSeries = [];
}
public addSeries (key:string, source:WglChartData.IChartDataElement):void {
var cs:CartesianSeries = new CartesianSeries(key, source);
cs.mapData(this.minVec, this.maxVec);
this.cSeries[<any>key] = cs; // <----------- why??????
}
}
8:00 – 4:30 SR
You must be logged in to post a comment.