Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. var xAxis=1;
  2. vm.pnLreportingPlotData.push(plotModel.map(function(o){
  3. return {x:xAxis++,y:o.PnLreporting};
  4. })
  5. );
  6.  
  7. var xAxis=1;
  8. vm.var95PlotData.push(plotModel.map(function(o){
  9. return { x:xAxis++, y:o.VaR95Total};
  10. })
  11. );
  12.  
  13. var xAxis=1;
  14. vm.var99PlotData.push(plotModel.map(function(o){
  15. var xAxis = 1;
  16. return { x:xAxis++, y:o.VaR99Total};
  17. })
  18. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement