Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. //Repeat the action for each list item
  2. productSalesChart.Item = function (ctx) {
  3.  
  4. var Q1Val =ctx.CurrentItem.Quarter1.replace(",", "");
  5. var Q2Val =ctx.CurrentItem.Quarter2.replace(",", "");
  6. var Q3Val =ctx.CurrentItem.Quarter3.replace(",", "");
  7.  
  8. productSalesChart.ChartTitle.push(ctx.CurrentItem.Product);
  9. productSalesChart.Q1Values.push(parseInt(Q1Val));
  10. productSalesChart.Q2Values.push(parseInt(Q2Val));
  11. productSalesChart.Q3Values.push(parseInt(Q3Val));
  12. return '';
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement