runningTotalNumber
The sum of point values since the last "runningTotal" summary point. Available for waterfall series points.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
series: [{
type: "waterfall",
data: [
{ name: "Initial", value: 100 },
{ name: "Income", value: 50 },
{ name: "Expenses", value: -30 },
{ name: "Summary", value: 0, summary: "runningTotal" }
],
field: "value",
categoryField: "name",
summaryField: "summary"
}],
seriesClick: function(e) {
console.log("Point running total:", e.point.runningTotal);
console.log("Point value:", e.point.value);
}
});
</script>
In this article