8:00 – 4:30 SR
- Deployed new FR
- Deployed test charts
- Status Reports! – Done
- Add IMinMax for X and Z? (optional) Wound up with the following:
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; } - Finished modifying cartesianSeries and cartesianData
- Fixed series color
- Realized that I had reversed the way that the series should work. Flipped some items around, and added tests for mismatched keys.
