isCumulativeSum : Boolean

Setting isCumulativeSum to true automatically calculates the sum of the dataPoints since the start of the dataSeries, in Waterfall Chart.


Default: false
Example: true, false

Notes
  • Works only in Waterfall Chart.


var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 data: [{
   type : "waterfall",
   dataPoints: [
     .
     .
     {  isCumulativeSum : true },
     .
     .
  ]
 
  }],
 .
 . 
});
chart.render();


Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question