Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/vchart/src/series/waterfall/waterfall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,9 @@ export class WaterfallSeries<T extends IWaterfallSeriesSpec = IWaterfallSeriesSp
protected _reStackTotal = () => {
const stackData = this.getStackData();
const stackValueField = this.getStackValueField();
stackTotal(stackData as IStackCacheNode, stackValueField);
if (stackData) {
stackTotal(stackData as IStackCacheNode, stackValueField);
}
};

compileData() {
Expand Down
Loading